Retrieve Registered Webhooks
Webhooks are HTTP callbacks that notify your application when events happen in SQUAKE's system.
Instead of continuously polling our API, webhooks push data to your endpoint when events occur.
This endpoint returns the list of currently registered webhooks.
See the Integration Documentation for more information.
GET
/v2/webhooks
curl \
--request GET 'https://api.squake.earth/v2/webhooks' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"kind": "order",
"signing_key": "TAWHPBAVckH8KmxRtlRX/rQ/mona5vUem7QFtozGHxM=",
"endpoint_url": "http://example.com",
"last_sent_at": "2024-08-24T14:15:22Z",
"last_failed_at": "2024-08-22T14:10:78Z",
"failed_attempts": 0
}
]