This endpoint creates a new webhook subscription.
curl --request POST \
--url https://api.shipbob.com/2025-07/webhook \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"description": "string",
"secret": "string",
"topics": [
"string"
],
"url": "https://mywebsite.com/shipbob/handler"
}'
{
"created_at": "2019-08-24T14:15:22Z",
"description": "string",
"id": "12345",
"secret": "string",
"topics": [
"string"
],
"url": "string"
}
Authentication using Personal Access Token (PAT) token
Success
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.shipbob.com/2025-07/webhook \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"description": "string",
"secret": "string",
"topics": [
"string"
],
"url": "https://mywebsite.com/shipbob/handler"
}'
{
"created_at": "2019-08-24T14:15:22Z",
"description": "string",
"id": "12345",
"secret": "string",
"topics": [
"string"
],
"url": "string"
}