Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
tenant id
Body
application/json
Acknowledgment received
Response
acknowledgment emitted
Acknowledgment received
curl --request POST \
--url https://prod01.oms.fabric.inc/api/v2/notification/acknowledgment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenant-key: <tenant-key>' \
--data '{
"id": "123456789",
"documentType": "ORDER",
"notificationType": "<string>",
"notificationDate": "2022-07-14T10:27:28-05:00"
}'
{
"id": "123456789",
"documentType": "ORDER",
"notificationType": "<string>",
"notificationDate": "2022-07-14T10:27:28-05:00"
}
This listener processes the acknowledgement body and adds audit-logs
curl --request POST \
--url https://prod01.oms.fabric.inc/api/v2/notification/acknowledgment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenant-key: <tenant-key>' \
--data '{
"id": "123456789",
"documentType": "ORDER",
"notificationType": "<string>",
"notificationDate": "2022-07-14T10:27:28-05:00"
}'
{
"id": "123456789",
"documentType": "ORDER",
"notificationType": "<string>",
"notificationDate": "2022-07-14T10:27:28-05:00"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
tenant id
Acknowledgment received
acknowledgment emitted
Acknowledgment received
Was this page helpful?