Webhooks
Retrieve a Webhook
GET
/
webhooks
/
{webhook_id}
curl --request GET \
--url https://api.sandbox.goteal.co/webhooks/{webhook_id} \
--header 'X-API-KEY: <api-key>'
{
"webhook_id": "95a0e70b-fe02-4f47-aef9-2efff279df71",
"name": "user-payroll-submitted",
"events": [
"user-payroll-submitted",
"user-payroll-created"
],
"url": "https://webhooks.company.com",
"created_at": "2019-05-17T00:00:00.000Z"
}
Authorizations
Path Parameters
ID of the webhook to get
Response
201
application/json
Created
The response is of type object
.
curl --request GET \
--url https://api.sandbox.goteal.co/webhooks/{webhook_id} \
--header 'X-API-KEY: <api-key>'
{
"webhook_id": "95a0e70b-fe02-4f47-aef9-2efff279df71",
"name": "user-payroll-submitted",
"events": [
"user-payroll-submitted",
"user-payroll-created"
],
"url": "https://webhooks.company.com",
"created_at": "2019-05-17T00:00:00.000Z"
}