curl --request GET \
--url https://api.openformat.tech/v1/webhook/{id} \
--header 'X-API-KEY: <api-key>'{
"status": "success",
"webhook": {
"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 an existing webhook
curl --request GET \
--url https://api.openformat.tech/v1/webhook/{id} \
--header 'X-API-KEY: <api-key>'{
"status": "success",
"webhook": {
"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"
}
}
{
"status": "success",
"webhook": {
"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"
}
}
Webhook id
"123"
Webhook data
Successful reponse status
success "success"
The webhook data
Show child attributes
Webhook id
123
Webhook URL
"https://api.example.com/webhook"
List of events that will trigger this webhook
Event name
["transaction"]Whether this webhook is disabled
true
Datetime this webhook was disabled
"2024-01-23 01:23:45.55338+00"
Datetime this webhook was created
"2024-01-23 01:23:45.55338+00"