Beneficiary API Playground
Send real, HMAC-signed requests to the beneficiary endpoints and inspect the live response.
POST/api/beneficiaries
cURL
- curl --location --request POST 'https://api.bitnob.com/api/beneficiaries' \
- --header 'Content-Type: application/json' \
- --header 'X-Auth-Client: {{clientId}}' \
- --header 'X-Auth-Timestamp: {{timestamp}}' \
- --header 'X-Auth-Nonce: {{nonce}}' \
- --header 'X-Auth-Signature: {{signature}}' \
- --data '{
- "name": "John Doe Bank",
- "type": "bank",
- "destination": "{\"account_name\":\"John Doe\",\"account_number\":\"0000611418\",\"bank_code\":\"058\"}"
- }'
Response
// Awaiting response...