curl --request GET \
--url https://api.other.page/v1/webhooks \
--header 'X-Api-Key: <api-key>'
[
{
"events": [
"account.created"
],
"callbackUrl": "<string>",
"id": "<string>",
"signingKey": "<string>"
}
]
Retrieve a list of your webhooks.
curl --request GET \
--url https://api.other.page/v1/webhooks \
--header 'X-Api-Key: <api-key>'
[
{
"events": [
"account.created"
],
"callbackUrl": "<string>",
"id": "<string>",
"signingKey": "<string>"
}
]
The response is of type object[]
.