For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DocumentationAPI Reference
DocumentationAPI Reference
  • API Reference
      • DELDelete Subscription
      • GETGet Subscriptions
      • POSTCreate Subscription
LogoLogo
API ReferenceWebhooks

Get Subscriptions

||View as Markdown|
GET
https://sandbox-api.shipbob.com/2026-01/webhook
GET
/2026-01/webhook
$curl -G https://sandbox-api.shipbob.com/2026-01/webhook \
> -H "Authorization: Bearer <token>" \
> -d RecordsPerPage=1 \
> -d Cursor=string
1{
2 "items": [
3 {
4 "created_at": "2019-08-24T14:15:22+00:00",
5 "description": "string",
6 "enabled": true,
7 "id": "12345",
8 "topics": [
9 "order.shipped"
10 ],
11 "url": "string"
12 }
13 ],
14 "next": "string",
15 "prev": "string"
16}
This endpoint returns a list of webhook subscriptions.
Was this page helpful?
Previous

Delete Subscription

Next

Create Subscription

Built with

Authentication

AuthorizationBearer

Authentication using Personal Access Token (PAT) token

OR
AuthorizationBearer
OAuth2 authentication using JWT tokens

Query parameters

RecordsPerPageintegerOptional1-250
Number of webhooks returned per page in a paginated response.
CursorstringOptional

[Optional] A pagination token used to retrieve the next or previous page of results. Omit to start at the first page.

Response

Success
itemslist of objects
nextstring
Go to the Next page
prevstring
Go to the Previous page

Errors

400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error