curl --request GET \
--url https://api.usecobalt.com/v1/webhook \
--header 'access_token: <api-key>' \
--header 'client_id: <api-key>' \
--header 'client_secret: <api-key>'{
"success": true,
"webhooks": [
{
"id": "<string>",
"url": "<string>",
"created_at": "<string>"
}
]
}Returns a list of all configured webhooks.
curl --request GET \
--url https://api.usecobalt.com/v1/webhook \
--header 'access_token: <api-key>' \
--header 'client_id: <api-key>' \
--header 'client_secret: <api-key>'{
"success": true,
"webhooks": [
{
"id": "<string>",
"url": "<string>",
"created_at": "<string>"
}
]
}curl -X GET https://api.usecobalt.com/v1/webhook \
-H 'Content-Type: application/json' \
-H 'client_id: ci_live_198908HJDKJSH98789OHKJL' \
-H 'client_secret: cs_live_9827hofdsklOYYHJLJh'
{
"success": true,
"webhooks": [
{
"id": "wh_123456789",
"url": "https://api.example.com/webhook",
"created_at": "2024-01-01T00:00:00Z"
}
]
}