...
The Integration Service provides an API where integration endpoints can register for notifications regarding predefined sets of changes in the Digizuite. The Integration Service is fully available from DC 5.3.1.
When registering an endpoint, a name and a URL where notifications should be sent to must be provided. Furthermore, it must be indicated which of the following change types the integration endpoint should receive notifications for:
ChangeType | Corresponding internal events | Internal constant |
---|---|---|
AssetChanged | AssetCreated, AssetDeleted, AssetExternalProccessingFinished, AssetFolderUpdated, AssetLocationStateUpdated, AssetMetadataUpdated, AssetProfilePublished, AssetSecurityUpdated, AssetUploadFinished |
ComboValueChanged
1 | ||
MetafieldChanged | MetafieldCreated, MetafieldDeleted, MetafieldMetadataUpdated, MetafieldSecurityUpdated | 2 |
---|---|---|
TreeValueChanged | TreeValueCreated, TreeValueDeleted, TreeValueMetadataUpdated, TreeValueSecurityUpdated | 4 |
ComboValueChanged | ComboValueCreated, ComboValueDeleted, ComboValueMetadataUpdated, ComboValueSecurityUpdated | 8 |
An integration endpoint can subscribe to any subset of the four change types, but it must subscribe to at least one change type.
When subscribing to a change type, each time a corresponding internal event occurs, a notification will be sent to the URL registered for the integration endpoint each time a corresponding internal event occurs. Thus, an . For instance, both AssetCreated and an AssetDeleted event events will , for instance, both trigger an identical trigger the same AssetChanged notification to on all endpoints that subscribe to AssetChanged events. The events are debounced to avoid receiving too many identical change events over a short period of time. Thus, a small notification delay is to be expected. The debouncing interval can be configured by adding the following section to the appsettings.json file of the Integration Service:
Code Block |
---|
"Debouncing": {
"Interval": "<TIMESPAN>"
} |
TIMESPAN could for instance have the value 00:00:07, if the debouncing interval should be set to 7 seconds. The default value is 5 seconds.
Note that, it is possible to provide custom headers for the notification HTTP messages when registering an integration endpoint. This, however, is optional.
When using the API, make sure that your user has the required roles for the requested endpoint. In particular, the roles “Integration_Endpoints_View” and “Integration_Endpoints_CRUD” are required for a lot of the endpoints.
Note that, it is also possible to get, retry, and purge failed messages with the API.
Info |
---|
Detailed More comprehensive Swagger documentation can be found at “<YOUR_DAM>/DigizuiteCore/IntegrationService/api-docs”, where <YOUR_DAM> is the base URL of the DC installation. E.g. “https://mm-dam.dev.digizuite.com”. |
Notifications
Notifications are, by definition, push-based. Thus, for an integration endpoint to receive notifications it should listen for incoming HTTP POST messages at the registered URL to receive . An integration endpoint should respond with a 200 OK to successfully received notifications. A notification generally has the following JSON-formatted body:
Code Block |
---|
{ "ChangeType": <the change type of the event>, "Data": { <additionalId>: <additionalIdValue>"ItemId": <itemId of the item that triggered the event>, "ItemId"<specificId>: <itemId<baseId of the item that triggered the event> } } |
The value of the “ChangeType” parameter is an integer, which is used to identify a its change type. The mapping between ChangeTypes and their integer representations can be retrieved at “/IntegrationService/ChangeTypes”. For each of the change types, an additional data parameter is provided. The additional IDs areSee the constants in the table above.<specificId> depends on the change type:
ChangeType | <additionalId><specificId> |
---|---|
AssetChanged | “AssetId” |
ComboValueChanged | “ComboValueId” |
MetafieldChanged | “MetafieldId” |
TreeValueChanged | “TreeValueId” |
Info |
---|
The dynamic <specificId> is changed to always be “BaseId” in DC version 5.3.2. |