Skip to main content
GET
/
v1
/
webhook
/
{id}
Retrieve webhook
curl --request GET \
  --url https://api.sendo.dev/v1/webhook/{id} \
  --header 'Authorization: Bearer <token>'
{
  "webhook": {
    "id": "d3392dbf-ae4b-43b9-9b50-dcafa5c7h4mn",
    "createdAt": "2023-12-31T03:07:35.826Z",
    "name": "Event Service",
    "url": "https://website.com/webhook",
    "campaignId": "g1tkV7Eq",
    "signature": "aVWS7HTLR9xxMkdE",
    "eventTypes": [
      "message.incoming",
      "message.status"
    ],
    "numbers": [
      "+14159436397"
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.sendo.dev/llms.txt

Use this file to discover all available pages before exploring further.

Parameters

id
string
required
The ID of the webhook to retrieve.

Response

webhook
object
The details of the webhook.
{
  "webhook": {
    "id": "d3392dbf-ae4b-43b9-9b50-dcafa5c7h4mn",
    "createdAt": "2023-12-31T03:07:35.826Z",
    "name": "Event Service",
    "url": "https://website.com/webhook",
    "campaignId": "g1tkV7Eq",
    "signature": "aVWS7HTLR9xxMkdE",
    "eventTypes": [
      "message.incoming",
      "message.status"
    ],
    "numbers": [
      "+14159436397"
    ]
  }
}