Retrieves the full details of a specific webhook configuration by its ID.
Authentication is performed via the Authorization header (Bearer token).
Request
Add the parameter Authorization
to Headers Example:Authorization: ********************
or
Request Code Samples
curl --location --request GET '/v1/webhooks/WBH-20240101-ABC123' \
--header 'Authorization: Bearer <token>'
Responses
application/json
Webhook detail retrieved successfully
{
"status": "200",
"message": "success",
"data": {
"id": 1,
"webhookId": "WBH-20240101-ABC123",
"type": "PAYMENT",
"url": "https://example.com/webhook/payment",
"descriptions": "Webhook for payment notifications",
"createdDate": "2024-01-01T10:00:00+07:00",
"updatedDate": "2024-01-01T10:00:00+07:00",
"criteriaMethods": [
{
"code": "EWALLET_TNG",
"name": "e-Wallet TNG",
"groupCode": "EWALLET",
"groupName": "e-Wallet",
"webhookId": "WBH-20240101-ABC123",
"bindStatus": "ACTIVE",
"status": "ACTIVE"
}
]
}
}
Modified at 2026-02-19 02:47:20