Parselv1.0.0
Webhooks

Get webhook subscription

Get a specific webhook subscription by ID.

GET
/webhooks/{id}

Authorization

authorization
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Webhook subscription ID

Formatuuid

Response Body

application/json

application/json

curl -X GET "https://api.parsel.app/webhooks/123e4567-e89b-12d3-a456-426614174000"
{
  "created_at": {},
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "is_active": true,
  "secret": "dG9wX3NlY3JldF9rZXlfZm9yX3BhcnNlbF93ZWJob29rc18yMDI0XzEyXzE5",
  "topic": "LABEL_TRACKING_UPDATED",
  "updated_at": {},
  "url": "https://example.com/webhook"
}
{
  "errors": {
    "message": "The requested resource could not be found",
    "status": "Not Found"
  }
}