LinkedIn Clone

EVENT GUIDE

linkedin-company-service

Handles company profiles, company admin assignments, company following, and posting company updates/news. Enables professionals to follow companies, get updates, and enables admins to manage company presence..

Architectural Design Credit and Contact Information

The architectural design of this microservice is credited to . For inquiries, feedback, or further information regarding the architecture, please direct your communication to:

Email:

We encourage open communication and welcome any questions or discussions related to the architectural aspects of this microservice.

Documentation Scope

Welcome to the official documentation for the Company Service Event descriptions. This guide is dedicated to detailing how to subscribe to and listen for state changes within the Company Service, offering an exclusive focus on event subscription mechanisms.

Intended Audience

This documentation is aimed at developers and integrators looking to monitor Company Service state changes. It is especially relevant for those wishing to implement or enhance business logic based on interactions with Company objects.

Overview

This section provides detailed instructions on monitoring service events, covering payload structures and demonstrating typical use cases through examples.

Authentication and Authorization

Access to the Company service's events is facilitated through the project's Kafka server, which is not accessible to the public. Subscription to a Kafka topic requires being on the same network and possessing valid Kafka user credentials. This document presupposes that readers have existing access to the Kafka server.

Additionally, the service offers a public subscription option via REST for real-time data management in frontend applications, secured through REST API authentication and authorization mechanisms. To subscribe to service events via the REST API, please consult the Realtime REST API Guide.

Database Events

Database events are triggered at the database layer, automatically and atomically, in response to any modifications at the data level. These events serve to notify subscribers about the creation, update, or deletion of objects within the database, distinct from any overarching business logic.

Listening to database events is particularly beneficial for those focused on tracking changes at the database level. A typical use case for subscribing to database events is to replicate the data store of one service within another service's scope, ensuring data consistency and syncronization across services.

For example, while a business operation such as "approve membership" might generate a high-level business event like membership-approved, the underlying database changes could involve multiple state updates to different entities. These might be published as separate events, such as dbevent-member-updated and dbevent-user-updated, reflecting the granular changes at the database level.

Such detailed eventing provides a robust foundation for building responsive, data-driven applications, enabling fine-grained observability and reaction to the dynamics of the data landscape. It also facilitates the architectural pattern of event sourcing, where state changes are captured as a sequence of events, allowing for high-fidelity data replication and history replay for analytical or auditing purposes.

DbEvent companyFollower-created

Event topic: linkedin-company-service-dbevent-companyfollower-created

This event is triggered upon the creation of a companyFollower data object in the database. The event payload encompasses the newly created data, encapsulated within the root of the paylod.

Event payload:

{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

DbEvent companyFollower-updated

Event topic: linkedin-company-service-dbevent-companyfollower-updated

Activation of this event follows the update of a companyFollower data object. The payload contains the updated information under the companyFollower attribute, along with the original data prior to update, labeled as old_companyFollower and also you can find the old and new versions of updated-only portion of the data..

Event payload:

{
old_companyFollower:{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
companyFollower:{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
oldDataValues,
newDataValues
}

DbEvent companyFollower-deleted

Event topic: linkedin-company-service-dbevent-companyfollower-deleted

This event announces the deletion of a companyFollower data object, covering both hard deletions (permanent removal) and soft deletions (where the isActive attribute is set to false). Regardless of the deletion type, the event payload will present the data as it was immediately before deletion, highlighting an isActive status of false for soft deletions.

Event payload:

{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

DbEvent companyUpdate-created

Event topic: linkedin-company-service-dbevent-companyupdate-created

This event is triggered upon the creation of a companyUpdate data object in the database. The event payload encompasses the newly created data, encapsulated within the root of the paylod.

Event payload:

{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

DbEvent companyUpdate-updated

Event topic: linkedin-company-service-dbevent-companyupdate-updated

Activation of this event follows the update of a companyUpdate data object. The payload contains the updated information under the companyUpdate attribute, along with the original data prior to update, labeled as old_companyUpdate and also you can find the old and new versions of updated-only portion of the data..

Event payload:

{
old_companyUpdate:{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
companyUpdate:{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
oldDataValues,
newDataValues
}

DbEvent companyUpdate-deleted

Event topic: linkedin-company-service-dbevent-companyupdate-deleted

This event announces the deletion of a companyUpdate data object, covering both hard deletions (permanent removal) and soft deletions (where the isActive attribute is set to false). Regardless of the deletion type, the event payload will present the data as it was immediately before deletion, highlighting an isActive status of false for soft deletions.

Event payload:

{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

DbEvent company-created

Event topic: linkedin-company-service-dbevent-company-created

This event is triggered upon the creation of a company data object in the database. The event payload encompasses the newly created data, encapsulated within the root of the paylod.

Event payload:

{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

DbEvent company-updated

Event topic: linkedin-company-service-dbevent-company-updated

Activation of this event follows the update of a company data object. The payload contains the updated information under the company attribute, along with the original data prior to update, labeled as old_company and also you can find the old and new versions of updated-only portion of the data..

Event payload:

{
old_company:{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
company:{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
oldDataValues,
newDataValues
}

DbEvent company-deleted

Event topic: linkedin-company-service-dbevent-company-deleted

This event announces the deletion of a company data object, covering both hard deletions (permanent removal) and soft deletions (where the isActive attribute is set to false). Regardless of the deletion type, the event payload will present the data as it was immediately before deletion, highlighting an isActive status of false for soft deletions.

Event payload:

{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

DbEvent companyAdmin-created

Event topic: linkedin-company-service-dbevent-companyadmin-created

This event is triggered upon the creation of a companyAdmin data object in the database. The event payload encompasses the newly created data, encapsulated within the root of the paylod.

Event payload:

{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

DbEvent companyAdmin-updated

Event topic: linkedin-company-service-dbevent-companyadmin-updated

Activation of this event follows the update of a companyAdmin data object. The payload contains the updated information under the companyAdmin attribute, along with the original data prior to update, labeled as old_companyAdmin and also you can find the old and new versions of updated-only portion of the data..

Event payload:

{
old_companyAdmin:{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
companyAdmin:{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},
oldDataValues,
newDataValues
}

DbEvent companyAdmin-deleted

Event topic: linkedin-company-service-dbevent-companyadmin-deleted

This event announces the deletion of a companyAdmin data object, covering both hard deletions (permanent removal) and soft deletions (where the isActive attribute is set to false). Regardless of the deletion type, the event payload will present the data as it was immediately before deletion, highlighting an isActive status of false for soft deletions.

Event payload:

{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

ElasticSearch Index Events

Within the Company service, most data objects are mirrored in ElasticSearch indices, ensuring these indices remain syncronized with their database counterparts through creation, updates, and deletions. These indices serve dual purposes: they act as a data source for external services and furnish aggregated data tailored to enhance frontend user experiences. Consequently, an ElasticSearch index might encapsulate data in its original form or aggregate additional information from other data objects.

These aggregations can include both one-to-one and one-to-many relationships not only with database objects within the same service but also across different services. This capability allows developers to access comprehensive, aggregated data efficiently. By subscribing to ElasticSearch index events, developers are notified when an index is updated and can directly obtain the aggregated entity within the event payload, bypassing the need for separate ElasticSearch queries.

It's noteworthy that some services may augment another service's index by appending to the entity’s extends object. In such scenarios, an *-extended event will contain only the newly added data. Should you require the complete dataset, you would need to retrieve the full ElasticSearch index entity using the provided ID.

This approach to indexing and event handling facilitates a modular, interconnected architecture where services can seamlessly integrate and react to changes, enriching the overall data ecosystem and enabling more dynamic, responsive applications.

Index Event companyfollower-created

Event topic: elastic-index-linkedin_companyfollower-created

Event payload:

{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyfollower-updated

Event topic: elastic-index-linkedin_companyfollower-created

Event payload:

{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyfollower-deleted

Event topic: elastic-index-linkedin_companyfollower-deleted

Event payload:

{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyfollower-extended

Event topic: elastic-index-linkedin_companyfollower-extended

Event payload:

{
  id: id,
  extends: {
    [extendName]: "Object",
    [extendName + "_count"]: "Number",
  },
}

Route Events

Route events are emitted following the successful execution of a route. While most routes perform CRUD (Create, Read, Update, Delete) operations on data objects, resulting in route events that closely resemble database events, there are distinctions worth noting. A single route execution might trigger multiple CRUD actions and ElasticSearch indexing operations. However, for those primarily concerned with the overarching business logic and its outcomes, listening to the consolidated route event, published once at the conclusion of the route's execution, is more pertinent.

Moreover, routes often deliver aggregated data beyond the primary database object, catering to specific client needs. For instance, creating a data object via a route might not only return the entity's data but also route-specific metrics, such as the executing user's permissions related to the entity. Alternatively, a route might automatically generate default child entities following the creation of a parent object. Consequently, the route event encapsulates a unified dataset encompassing both the parent and its children, in contrast to individual events triggered for each entity created. Therefore, subscribing to route events can offer a richer, more contextually relevant set of information aligned with business logic.

The payload of a route event mirrors the REST response JSON of the route, providing a direct and comprehensive reflection of the data and metadata communicated to the client. This ensures that subscribers to route events receive a payload that encapsulates both the primary data involved and any additional information deemed significant at the business level, facilitating a deeper understanding and integration of the service's functional outcomes.

Route Event companyadmin-retrived

Event topic : linkedin-company-service-companyadmin-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-followed

Event topic : linkedin-company-service-company-followed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-removed

Event topic : linkedin-company-service-companyadmin-removed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-created

Event topic : linkedin-company-service-company-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"POST","action":"create","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-retrived

Event topic : linkedin-company-service-company-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"GET","action":"get","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companies-listed

Event topic : linkedin-company-service-companies-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companies data object itself.

The following JSON included in the payload illustrates the fullest representation of the companies object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companies","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companies":[{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event company-updated

Event topic : linkedin-company-service-company-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-deleted

Event topic : linkedin-company-service-company-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-assigned

Event topic : linkedin-company-service-companyadmin-assigned

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmins-listed

Event topic : linkedin-company-service-companyadmins-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmins data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmins object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmins","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyAdmins":[{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-retrived

Event topic : linkedin-company-service-companyupdate-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-unfollowed

Event topic : linkedin-company-service-company-unfollowed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollowers-listed

Event topic : linkedin-company-service-companyfollowers-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollowers data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollowers object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollowers","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyFollowers":[{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-created

Event topic : linkedin-company-service-companyupdate-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-updated

Event topic : linkedin-company-service-companyupdate-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollower-retrived

Event topic : linkedin-company-service-companyfollower-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-deleted

Event topic : linkedin-company-service-companyupdate-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdates-listed

Event topic : linkedin-company-service-companyupdates-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdates data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdates object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdates","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyUpdates":[{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Index Event companyupdate-created

Event topic: elastic-index-linkedin_companyupdate-created

Event payload:

{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyupdate-updated

Event topic: elastic-index-linkedin_companyupdate-created

Event payload:

{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyupdate-deleted

Event topic: elastic-index-linkedin_companyupdate-deleted

Event payload:

{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyupdate-extended

Event topic: elastic-index-linkedin_companyupdate-extended

Event payload:

{
  id: id,
  extends: {
    [extendName]: "Object",
    [extendName + "_count"]: "Number",
  },
}

Route Events

Route events are emitted following the successful execution of a route. While most routes perform CRUD (Create, Read, Update, Delete) operations on data objects, resulting in route events that closely resemble database events, there are distinctions worth noting. A single route execution might trigger multiple CRUD actions and ElasticSearch indexing operations. However, for those primarily concerned with the overarching business logic and its outcomes, listening to the consolidated route event, published once at the conclusion of the route's execution, is more pertinent.

Moreover, routes often deliver aggregated data beyond the primary database object, catering to specific client needs. For instance, creating a data object via a route might not only return the entity's data but also route-specific metrics, such as the executing user's permissions related to the entity. Alternatively, a route might automatically generate default child entities following the creation of a parent object. Consequently, the route event encapsulates a unified dataset encompassing both the parent and its children, in contrast to individual events triggered for each entity created. Therefore, subscribing to route events can offer a richer, more contextually relevant set of information aligned with business logic.

The payload of a route event mirrors the REST response JSON of the route, providing a direct and comprehensive reflection of the data and metadata communicated to the client. This ensures that subscribers to route events receive a payload that encapsulates both the primary data involved and any additional information deemed significant at the business level, facilitating a deeper understanding and integration of the service's functional outcomes.

Route Event companyadmin-retrived

Event topic : linkedin-company-service-companyadmin-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-followed

Event topic : linkedin-company-service-company-followed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-removed

Event topic : linkedin-company-service-companyadmin-removed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-created

Event topic : linkedin-company-service-company-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"POST","action":"create","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-retrived

Event topic : linkedin-company-service-company-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"GET","action":"get","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companies-listed

Event topic : linkedin-company-service-companies-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companies data object itself.

The following JSON included in the payload illustrates the fullest representation of the companies object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companies","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companies":[{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event company-updated

Event topic : linkedin-company-service-company-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-deleted

Event topic : linkedin-company-service-company-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-assigned

Event topic : linkedin-company-service-companyadmin-assigned

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmins-listed

Event topic : linkedin-company-service-companyadmins-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmins data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmins object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmins","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyAdmins":[{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-retrived

Event topic : linkedin-company-service-companyupdate-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-unfollowed

Event topic : linkedin-company-service-company-unfollowed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollowers-listed

Event topic : linkedin-company-service-companyfollowers-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollowers data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollowers object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollowers","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyFollowers":[{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-created

Event topic : linkedin-company-service-companyupdate-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-updated

Event topic : linkedin-company-service-companyupdate-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollower-retrived

Event topic : linkedin-company-service-companyfollower-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-deleted

Event topic : linkedin-company-service-companyupdate-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdates-listed

Event topic : linkedin-company-service-companyupdates-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdates data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdates object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdates","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyUpdates":[{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Index Event company-created

Event topic: elastic-index-linkedin_company-created

Event payload:

{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event company-updated

Event topic: elastic-index-linkedin_company-created

Event payload:

{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event company-deleted

Event topic: elastic-index-linkedin_company-deleted

Event payload:

{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event company-extended

Event topic: elastic-index-linkedin_company-extended

Event payload:

{
  id: id,
  extends: {
    [extendName]: "Object",
    [extendName + "_count"]: "Number",
  },
}

Route Events

Route events are emitted following the successful execution of a route. While most routes perform CRUD (Create, Read, Update, Delete) operations on data objects, resulting in route events that closely resemble database events, there are distinctions worth noting. A single route execution might trigger multiple CRUD actions and ElasticSearch indexing operations. However, for those primarily concerned with the overarching business logic and its outcomes, listening to the consolidated route event, published once at the conclusion of the route's execution, is more pertinent.

Moreover, routes often deliver aggregated data beyond the primary database object, catering to specific client needs. For instance, creating a data object via a route might not only return the entity's data but also route-specific metrics, such as the executing user's permissions related to the entity. Alternatively, a route might automatically generate default child entities following the creation of a parent object. Consequently, the route event encapsulates a unified dataset encompassing both the parent and its children, in contrast to individual events triggered for each entity created. Therefore, subscribing to route events can offer a richer, more contextually relevant set of information aligned with business logic.

The payload of a route event mirrors the REST response JSON of the route, providing a direct and comprehensive reflection of the data and metadata communicated to the client. This ensures that subscribers to route events receive a payload that encapsulates both the primary data involved and any additional information deemed significant at the business level, facilitating a deeper understanding and integration of the service's functional outcomes.

Route Event companyadmin-retrived

Event topic : linkedin-company-service-companyadmin-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-followed

Event topic : linkedin-company-service-company-followed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-removed

Event topic : linkedin-company-service-companyadmin-removed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-created

Event topic : linkedin-company-service-company-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"POST","action":"create","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-retrived

Event topic : linkedin-company-service-company-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"GET","action":"get","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companies-listed

Event topic : linkedin-company-service-companies-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companies data object itself.

The following JSON included in the payload illustrates the fullest representation of the companies object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companies","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companies":[{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event company-updated

Event topic : linkedin-company-service-company-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-deleted

Event topic : linkedin-company-service-company-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-assigned

Event topic : linkedin-company-service-companyadmin-assigned

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmins-listed

Event topic : linkedin-company-service-companyadmins-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmins data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmins object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmins","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyAdmins":[{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-retrived

Event topic : linkedin-company-service-companyupdate-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-unfollowed

Event topic : linkedin-company-service-company-unfollowed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollowers-listed

Event topic : linkedin-company-service-companyfollowers-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollowers data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollowers object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollowers","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyFollowers":[{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-created

Event topic : linkedin-company-service-companyupdate-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-updated

Event topic : linkedin-company-service-companyupdate-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollower-retrived

Event topic : linkedin-company-service-companyfollower-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-deleted

Event topic : linkedin-company-service-companyupdate-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdates-listed

Event topic : linkedin-company-service-companyupdates-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdates data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdates object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdates","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyUpdates":[{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Index Event companyadmin-created

Event topic: elastic-index-linkedin_companyadmin-created

Event payload:

{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyadmin-updated

Event topic: elastic-index-linkedin_companyadmin-created

Event payload:

{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyadmin-deleted

Event topic: elastic-index-linkedin_companyadmin-deleted

Event payload:

{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}

Index Event companyadmin-extended

Event topic: elastic-index-linkedin_companyadmin-extended

Event payload:

{
  id: id,
  extends: {
    [extendName]: "Object",
    [extendName + "_count"]: "Number",
  },
}

Route Events

Route events are emitted following the successful execution of a route. While most routes perform CRUD (Create, Read, Update, Delete) operations on data objects, resulting in route events that closely resemble database events, there are distinctions worth noting. A single route execution might trigger multiple CRUD actions and ElasticSearch indexing operations. However, for those primarily concerned with the overarching business logic and its outcomes, listening to the consolidated route event, published once at the conclusion of the route's execution, is more pertinent.

Moreover, routes often deliver aggregated data beyond the primary database object, catering to specific client needs. For instance, creating a data object via a route might not only return the entity's data but also route-specific metrics, such as the executing user's permissions related to the entity. Alternatively, a route might automatically generate default child entities following the creation of a parent object. Consequently, the route event encapsulates a unified dataset encompassing both the parent and its children, in contrast to individual events triggered for each entity created. Therefore, subscribing to route events can offer a richer, more contextually relevant set of information aligned with business logic.

The payload of a route event mirrors the REST response JSON of the route, providing a direct and comprehensive reflection of the data and metadata communicated to the client. This ensures that subscribers to route events receive a payload that encapsulates both the primary data involved and any additional information deemed significant at the business level, facilitating a deeper understanding and integration of the service's functional outcomes.

Route Event companyadmin-retrived

Event topic : linkedin-company-service-companyadmin-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-followed

Event topic : linkedin-company-service-company-followed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-removed

Event topic : linkedin-company-service-companyadmin-removed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-created

Event topic : linkedin-company-service-company-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"POST","action":"create","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-retrived

Event topic : linkedin-company-service-company-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"GET","action":"get","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companies-listed

Event topic : linkedin-company-service-companies-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companies data object itself.

The following JSON included in the payload illustrates the fullest representation of the companies object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companies","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companies":[{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event company-updated

Event topic : linkedin-company-service-company-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-deleted

Event topic : linkedin-company-service-company-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the company data object itself.

The following JSON included in the payload illustrates the fullest representation of the company object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"company","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"company":{"id":"ID","name":"String","website":"String","location":"String","logoUrl":"String","pageVisibility":"Enum","pageVisibility_idx":"Integer","createdByUserId":"ID","description":"Text","industry":"String","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmin-assigned

Event topic : linkedin-company-service-companyadmin-assigned

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmin data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmin object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmin","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyAdmin":{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyadmins-listed

Event topic : linkedin-company-service-companyadmins-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyAdmins data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyAdmins object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyAdmins","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyAdmins":[{"id":"ID","assignedAt":"Date","userId":"ID","companyId":"ID","assignedBy":"ID","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-retrived

Event topic : linkedin-company-service-companyupdate-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event company-unfollowed

Event topic : linkedin-company-service-company-unfollowed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollowers-listed

Event topic : linkedin-company-service-companyfollowers-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollowers data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollowers object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollowers","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyFollowers":[{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Route Event companyupdate-created

Event topic : linkedin-company-service-companyupdate-created

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"201","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"POST","action":"create","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-updated

Event topic : linkedin-company-service-companyupdate-updated

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"PATCH","action":"update","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyfollower-retrived

Event topic : linkedin-company-service-companyfollower-retrived

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyFollower data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyFollower object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyFollower","method":"GET","action":"get","appVersion":"Version","rowCount":1,"companyFollower":{"id":"ID","userId":"ID","companyId":"ID","followedAt":"Date","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdate-deleted

Event topic : linkedin-company-service-companyupdate-deleted

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdate data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdate object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdate","method":"DELETE","action":"delete","appVersion":"Version","rowCount":1,"companyUpdate":{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":false,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"}}

Route Event companyupdates-listed

Event topic : linkedin-company-service-companyupdates-listed

Event payload:

The event payload, mirroring the REST API response, is structured as an encapsulated JSON. It includes metadata related to the API as well as the companyUpdates data object itself.

The following JSON included in the payload illustrates the fullest representation of the companyUpdates object. Note, however, that certain properties might be excluded in accordance with the object's inherent logic.

{"status":"OK","statusCode":"200","elapsedMs":126,"ssoTime":120,"source":"db","cacheKey":"hexCode","userId":"ID","sessionId":"ID","requestId":"ID","dataName":"companyUpdates","method":"GET","action":"list","appVersion":"Version","rowCount":"\"Number\"","companyUpdates":[{"id":"ID","companyId":"ID","content":"Text","authorUserId":"ID","attachmentUrls":"String","visibility":"Enum","visibility_idx":"Integer","isActive":true,"recordVersion":"Integer","createdAt":"Date","updatedAt":"Date","_owner":"ID"},{},{}],"paging":{"pageNumber":"Number","pageRowCount":"NUmber","totalRowCount":"Number","pageCount":"Number"},"filters":[],"uiPermissions":[]}

Copyright

All sources, documents and other digital materials are copyright of .

About Us

For more information please visit our website: .

. .