Webhooks
Get webhook
GET
/
api
/
v2
/
public
/
webhook
curl --request GET \
--url https://api.gocobalt.io/api/v2/public/webhook \
--header 'x-api-key: <x-api-key>'
{
"webhook_url": "https://mysite.com/cobalt/webhook",
"webhook_events": [
"connected-created",
"workflow-completed"
]
}
This api provides registered Cobalt webhook details.
Response description
200
500
webhook_url
string
Registered webhook url
webhook_events
array
Subscribed events.
curl --request GET \
--url https://api.gocobalt.io/api/v2/public/webhook \
--header 'x-api-key: <x-api-key>'
{
"webhook_url": "https://mysite.com/cobalt/webhook",
"webhook_events": [
"connected-created",
"workflow-completed"
]
}