Arf Liquidity Docs
  1. Webhooks
Arf Liquidity Docs
  • Introduction
  • Environments
  • IP Restrictions
  • Authentication
  • RSA4096 Examples
  • Errors
  • Webhooks
  • Client
    • Create Client
      POST
    • Upload Document
      PUT
    • Get Client
      GET
    • List Clients
      GET
    • Get Client Credit Preference
      GET
    • Create Bank Information
      POST
    • Create Chain Information
      POST
  • Credit
    • Check Credit
      GET
    • Create Credit
      POST
    • Get Credit
      GET
    • List Credits
      GET
  • Webhooks
    • List All Webhook
      GET
    • Create Webhook
      POST
    • Delete Webhook
      DELETE
  • Schemas
    • Error Schema
    • Successful Response
    • Client Detail
    • Document Detail
    • Credit Details
    • Webhook
  1. Webhooks

List All Webhook

GET
/api/v1/webhook
Last modified:2025-07-10 10:46:21
Retrieves all webhook configurations associated with the account.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/webhook' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "data": [
        {
            "id": "string",
            "enabled_events": [
                "string"
            ],
            "mode": "string",
            "url": "string",
            "description": "string",
            "created_at": "string"
        }
    ]
}
Modified at 2025-07-10 10:46:21
Previous
List Credits
Next
Create Webhook
Built with