List webhooks
List all registered webhooks
Curl Request
curl "https://api.moyasar.com/v1/webhooks" -u "sk_123:"
Responses
Success Response
{
"webhooks": [
{
"id": "4f4ad1f3-720a-4fb5-9f2d-5eb0ea670450",
"http_method": "post",
"url": "https://example.com/alpha",
"created_at": "2022-12-07T08:23:18.087Z",
"events": [
"payment_paid",
"payment_failed",
"payment_voided",
"payment_authorized",
"payment_captured",
"payment_refunded",
"payment_abandoned",
"payment_verified"
]
},
{
"id": "c4bc247d-5288-4673-9b40-39c082ac7fbb",
"http_method": "post",
"url": "https://example.com/alpha",
"created_at": "2022-12-07T08:24:23.097Z",
"events": ["payment_paid", "payment_failed"]
}
]
}