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 Get Webhooks endpoint returns information about a webhook that has been previously registered. The endpoint response includes the webhook id, name, webhook attributes, status, and a link to the webhook details.

Notification API

Get Webhook

GET /webhooks/{webhookId}

Get a webhook configuration by webhook ID

Authorization

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

Request

URI Parameters

The unique identifier {webhookId} representing a specific webhook.

Example Request

Get Webhook by ID request for registered webhook details

GET /notification/v2/webhooks/828ec8da-e01a-4085-bee8-7853fd87bd0c HTTP/1.1
Host: partner.abcsupply.com
Authorization: Bearer <TOKEN>
Expand

Response

Example Response

Get Webhook by ID response payload for registered webhook details

{
    "id": "828ec8da-e01a-4085-bee8-7853fd87bd0c",
    "name": "New Order Update",
    "secret": "NzhhMWJhYmYtYTcyNy00NzA4LTkzNzItMDBmMjVmNWQ0YjQ3LTIwMjUtMDMtMDVUMTU6MTY6MTYuOTgwODQyNDQyWi0xMzUyMTA=",
    "type": "ORDER",
    "event": "ORDER_UPDATE",
    "url": "https://abcpartner.com/webhook/events/orders",
    "status": "REGISTERED",
    "activeSince": "2025-03-05T15:16:16.980520386Z"
}
Expand

Name

Type

Description

id

string

The ID of the webhook.

name

string

The client-provided name for the webhook.

secret

string

The secret used by partners to check the integrity of the event update received from ABC Supply.

type

string

The type of webhook (e.g., “ORDER”). Order is the only webhook supported at this time.

event

string

The webhook events list of the returned webhook (e.g., “ORDER_UPDATE”).

url

string

The URL reference to the webhook.

status

string

The status of the webhook registration (e.g., “REGISTERED”).

activeSince

string

The datetime the webhook was activated (e.g., “2023-09-08T16:08:29.92Z”).

HTTP Status Codes

Code

Status

Description

404

Not Found

The webhook ID provided was not found for the application and may have been unregistered.