Webhooks
Get Webhooks
Getting Started
- Overview
- Authentication
- Concepts
- Error Codes
- Real-time Events
- Changelog
Core Profile
- Profile
- Members
- Owners
- Addresses
- Documents
- Access Tokens
- Webhooks
Core Wallet
- Wallets
- Balances
- Accounts
- Contacts
- Payment Links
- Statements
- Transfers
- Transactions
Billing & Payments
- Customers
- Plans
- Vouchers
- Invoices
- Subscriptions
- Payments
Integrations
- Payment Providers
Analytics & Logs
- Metrics
- Logs
Resources
- Banks
- Countries
- Currencies
- Events
- Industries
- Legal Form
- Providers
- Scopes
Get Webhooks
Fetch a list of webhooks.
GET
/
webhooks
curl --request GET \
--url https://api.live.paisr.tech/{version}/webhooks \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"webhooks": [
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successfully retrieved the list of profile webhooks.
Example:
true
Example:
"whk_123456"
Example:
"Checkout Callback"
Example:
"https://api.example.com/callback"
Example:
false
Example:
"tem_123456"
Was this page helpful?
curl --request GET \
--url https://api.live.paisr.tech/{version}/webhooks \
--header 'Authorization: Bearer <token>'
{
"success": true,
"data": {
"webhooks": [
{
"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"
}
]
}
}