Authorizations
Path Parameters
Response
200 - application/json
curl --request GET \
--url https://api.terminal49.com/v2/webhooks/{id} \
--header 'Authorization: <api-key>'{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "webhook",
"attributes": {
"url": "<string>",
"active": true,
"events": [
"container.transport.vessel_arrived"
],
"secret": "<string>",
"headers": [
{
"name": "<string>",
"value": "<string>"
}
]
}
}
}Get the details of a single webhook
curl --request GET \
--url https://api.terminal49.com/v2/webhooks/{id} \
--header 'Authorization: <api-key>'{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "webhook",
"attributes": {
"url": "<string>",
"active": true,
"events": [
"container.transport.vessel_arrived"
],
"secret": "<string>",
"headers": [
{
"name": "<string>",
"value": "<string>"
}
]
}
}
}Show child attributes
Was this page helpful?