Register Webhook for a Wallet Address

Notifies you of credit and and debit events on the webhook registered

POST https://exchanger-api.fuspay.finance/api/v1/no-auth/StableCoins/UpdateWebhook

EXAMPLE REQUEST

{address: "qwerty",
callback_url:
'https://',
};

PARAMS

keys
values
Description

address

Unique wallet or account address for transactions.

callback_url

URL where notifications or updates will be sent.

Response:

{
  "status": true,
  "message": "Webhook registered successfully",
  "data": {
    "address": "qwerty",
    "callback_url": "https://your-callback-url.com"
  }
}

PARAMS

Keys
Values
Description

status

Indicates if the request was successful (true/false).

message

Brief information about the request result.

data

Contains the main details of the response.

data.address

Wallet or account address for transactions.

data.callback_url

URL where webhook notifications will be sent.

Sample Webhook Payloads Incoming (From Fuspay to your server)

Outgoing (Your server's response back to Fuspay)

Last updated