GET
/
webhooks
/
{webhook_id}
curl --request GET \
  --url https://api.live.paisr.tech/{version}/webhooks/{webhook_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "whk_123456",
    "description": "Checkout Callback",
    "endpoint": "https://api.example.com/callback",
    "paused": false,
    "triggers": [
      {
        "id": "wtr_12345",
        "type": "invoice.paid"
      }
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "created_by": "tem_123456"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhook_id
string
required

The Webhook ID.

Response

200
application/json
Successfully retrieved webhook details.
success
boolean
Example:

true

data
object