Get a webhook
Get a webhook
GET
https://api.complycube.com/v1/webhooks/:id
Retrieves an existing webhook
Path Parameters
Name
Type
Description
id
string
The ID of the webhook.
Headers
Name
Type
Description
Authorization
string
The live or sandbox API key.
{
"id": "5ed1712e99c81a0007b9a3d6",
"description": "This is my webhook, I like it a lot",
"url": "https://example.com/my/webhook/endpoint",
"enabled": true,
"events": [
"check.pending",
"check.completed"
],
"createdAt": "2020-01-29T20:31:42.375Z",
"updatedAt": "2020-01-29T20:31:42.375Z"
}
Example request
curl -X GET https://api.complycube.com/v1/webhooks/{:webhookId} \
-H 'Authorization: <YOUR_API_KEY>'
Last updated
Was this helpful?