The v1 API will be sunset on August 21, 2026. Migrate to v2. Read the migration guide →
Paytrie Developer Documentation
API ReferenceWebhooks

Get Webhooks

View as Markdown
GET
/webhooks

Get webhook configuration for the authenticated API key. Returns the current webhook URLs and their enabled status.

Authorization

ApiKeyAuth
x-api-key<token>

API key

In: header

Header Parameters

x-api-key*string

API key for authentication

Response Body

application/json

curl -X GET "https://example.com/webhooks" \  -H "x-api-key: string"
{  "status": "success",  "webhook": {    "transactionCompleteEnabled": true,    "transactionInitiatedEnabled": true,    "transactionStatusUpdateEnabled": true,    "verifiedEmailEnabled": true,    "transactionCompleteUrl": "string",    "transactionInitiatedUrl": "string",    "transactionStatusUpdateUrl": "string",    "verifiedEmailUrl": "string"  }}