GET
/
webhook
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>"
    }
  ]
}

Example Request

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'

Example Response

{
    "success": true,
    "webhooks": [
        {
            "id": "wh_123456789",
            "url": "https://api.example.com/webhook",
            "created_at": "2024-01-01T00:00:00Z"
        }
    ]
}

Authorizations

client_id
string
header
required
client_secret
string
header
required
access_token
string
header
required

Response

200 - application/json
Successful response
success
boolean
webhooks
object[]