Callback Update
Creates or updates the callback URL for a specific partner notification type. Use this to configure webhook destinations. Validation ensures the partner exists and the notification type is supported.
path Parameters
partnerUniqueIDThe unique identifier of the partner.
notificationTypeThe integer identifier for the specific notification event.
Headers
AuthorizationBearer token for authentication. Format: Bearer {token}
Callback Update › Responses
The callback configuration was successfully updated.
Callback Delete
Deletes the callback configuration for a specific partner and notification type. Removes the webhook subscription. Returns 404 if the callback configuration does not exist.
path Parameters
partnerUniqueIDThe unique identifier of the partner.
notificationTypeThe integer identifier for the specific notification event.
Headers
AuthorizationBearer token for authentication. Format: Bearer {token}
Callback Delete › Responses
The callback was successfully removed.
Callback List
Retrieves a list of all configured callbacks for a specific partner. Returns all active webhook subscriptions and their details for the requested partner ID.
path Parameters
partnerUniqueIDThe unique identifier of the partner.
query Parameters
offsetThe number of items to skip before starting to collect the result set.
limitThe maximum number of items to return in the result set.
Headers
AuthorizationBearer token for authentication. Format: Bearer {token}
Callback List › Responses
The list of callbacks was successfully retrieved.
A list of registered callback configurations.
Callback Echo
The rawBody should follow the following structure based on the notificationTypeID. The structure of the rawBody will vary depending on the notificationTypeID, and it is crucial to ensure that the incoming JSON adheres to the expected format for successful processing. Important: At least one of processUniqueId or simulationUniqueId is required, never both. If both are provided, a bad request response will be returned.
Note on Notification Types:
- Type (WorkflowStateChange): Requires the following JSON structure:
Code
- Type (Notes): Requires the following JSON structure:
Code
- Type (Document): Requires the following JSON structure:
Code
path Parameters
partnerUniqueIDThe unique GUID identifier of the partner.
notificationTypeIDThe integer identifier of the notification type.
Headers
AuthorizationBearer token for authentication. Format: Bearer {token}
Callback Echo › Responses
The notification callback was successfully processed.