GET
/
webhook
Get Subscriptions
curl --request GET \
  --url https://api.shipbob.com/2025-07/webhook \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "created_at": "2019-08-24T14:15:22Z",
      "description": "string",
      "enabled": true,
      "id": "12345",
      "topics": [
        "string"
      ],
      "url": "string"
    }
  ],
  "next": "string",
  "prev": "string"
}

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Query Parameters

RecordsPerPage
number

Number of webhooks returned per page in a paginated response.

Required range: 1 <= x <= 250
Cursor
string

The number of records to skip before starting to return the results. Used for pagination.

Response

200
application/json

Success

The response is of type object.