GET
/
v1
/
webhooks
/
{webhookId}
Retrieve specific webhook
curl --request GET \
  --url https://api-staging.respondent.io/v1/webhooks/{webhookId} \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-secret: <x-api-secret>'
{
  "id": "<string>",
  "url": "<string>",
  "privateKey": "<string>",
  "teamId": "<string>",
  "organizationId": "<string>"
}

Headers

x-api-key
string
required
x-api-secret
string
required

Path Parameters

webhookId
string
required

Response

200 - application/json
id
string<ObjectId>
required
url
string
required

The URL to send the webhook payload to.

privateKey
string
required

The secret key to be used to sign the webhook payload.

teamId
string<ObjectId>
organizationId
string<ObjectId>