curl --request GET \
--url https://api.openformat.tech/v1/webhook \
--header 'X-API-KEY: <api-key>'
{
"status": "success",
"webhooks": [
{
"id": 123,
"url": "https://api.example.com/webhook",
"events": [
"transaction"
],
"disabled": true,
"disabled_at": "2024-01-23 01:23:45.55338+00",
"created_at": "2024-01-23 01:23:45.55338+00"
}
]
}
Show all user webhooks
curl --request GET \
--url https://api.openformat.tech/v1/webhook \
--header 'X-API-KEY: <api-key>'
{
"status": "success",
"webhooks": [
{
"id": 123,
"url": "https://api.example.com/webhook",
"events": [
"transaction"
],
"disabled": true,
"disabled_at": "2024-01-23 01:23:45.55338+00",
"created_at": "2024-01-23 01:23:45.55338+00"
}
]
}
Webhooks data
The response is of type object
.