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 ABC API Notification endpoints will be coming soon in a future release.

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

Example Request

URI Parameters

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

DELETE /notification/v2/webhooks/11c1fec0-8252-4464-a6d8-9732cee59da7 HTTP/1.1
Host: partner.abcsupply.com
Authorization: Bearer <TOKEN>
Expand

Response

Example Response

{
    "message": "Webhook id: 62ac9c4e-6da9-49ed-b5a6-e862f3b1ee95 is successfully Un-registered from the Partner Registry"
}
Expand

Name

Type

Description

message

string

The message returned describing the webhook and the success or failure of deregistration.

HTTP Status Codes

Name

Type

Description

400

Bad Request

Check the Request to make sure the Request Body and Parameters are passed correctly based on the API documentation.

404

Object Not Found

The request returned empty or no object. Please check the object identifier.

Additional Examples

Not Applicable