Skip to main content
GET
/
webhooks
/
{id}
Get a webhook
curl --request GET \
  --url https://api.demo.cula.earth/tracking/v1/webhooks/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "wbh_5ZTPGQX00HOLKUNM",
  "url": "https://hooks.example.com/events/",
  "events": [
    "sink.verified"
  ],
  "description": null,
  "status": "enabled",
  "created_at": "2025-10-10T21:03:58Z",
  "updated_at": "2025-10-10T21:03:58Z",
  "secret": "whsec_C2FVsBQIhrscChlQIMV+b5sSYspob7oD"
}

Authorizations

Authorization
string
header
required

OAuth 2.0 client credentials. Exchange your client_id and client_secret for an access token scoped to the organisation that provides data access.

Path Parameters

id
string
required
Example:

"wbh_2KFB4GK66SBXVGTC"

Response

Webhook

id
string
required
Example:

"wbh_5ZTPGQX00HOLKUNM"

url
string<uri>
required
Example:

"https://hooks.example.com/events/"

events
enum<string>[]
required
Minimum array length: 1
Available options:
sink.verified
Example:
["sink.verified"]
description
string | null
required
Example:

null

status
enum<string>
required
Available options:
enabled,
disabled
Example:

"enabled"

created_at
string<date-time>
required
Example:

"2025-10-10T21:03:58Z"

updated_at
string<date-time>
required
Example:

"2025-10-10T21:03:58Z"

secret
string

Symmetric signing secret for HMAC signature verification. Only returned once upon webhook creation.

Pattern: ^whsec_[A-Za-z0-9+/=]+$
Example:

"whsec_C2FVsBQIhrscChlQIMV+b5sSYspob7oD"