Notification API

Subscribe to ABC Supply updates such as order and shipment status. The Notification API allows you to configure webhooks and let ABC Supply push updates to your system in real time.

The Unregister Webhook endpoint unregisters a webhook that has been previously registered. The endpoint response includes a message about the outcome of the operation.

Notification API

Unregister Webhook

DELETE /webhooks/{webhookId}

Unregister an existing webhook

Authorization

OAuth 2.0 server or user token with the notification.write scope.

Request

URI Parameters

The URI parameter “{webhookId}” is the the webhook “id”.

Example Request

Delete Webhook by ID request for unregistering a webhook

DELETE /notification/v2/webhooks/f7e67e84-40e3-4a45-a7ab-e7710f043e64 HTTP/1.1
Host: partner.abcsupply.com
Authorization: Bearer <TOKEN>
Expand

Response

Example Response

Delete Webhook by ID response payload for unregistering a webhook

{
    "message": "Webhook id: f7e67e84-40e3-4a45-a7ab-e7710f043e64 is successfully Un-registered from the Partner Registry"
}
Expand

Name

Type

Description

message

string

The response message for successful unregistration of the webhook.

HTTP Status Codes

Code

Status

Description

200

OK

The request and response were successfully sent.

400

Bad Request

Confirm the request body and parameters are formatted correctly.