POST
/
billing
/
v1
/
disbursements
curl --request POST \
  --url https://sandbox-api.payfonte.com/billing/v1/disbursements \
  --header 'Content-Type: application/json' \
  --header 'client-id: <api-key>' \
  --header 'client-secret: <api-key>' \
  --data '{
  "reference": "<string>",
  "transferRecipientId": "6659692f019f6a143f7f90db",
  "amount": 100000,
  "narration": "Transfer of 100",
  "pin": "<string>",
  "webhookUrl": "https://example.com/webhook"
}'
{
  "data": {
    "reference": "<string>",
    "amount": 100000,
    "amountPayable": 100000,
    "provider": "provider-slug",
    "currency": "USD, NGN, XOF, XAF",
    "country": "US, NG, CI, SN, CA, UK",
    "status": "processing"
  }
}

Authorizations

client-id
string
header
required
client-secret
string
header
required

Body

application/json

Request a Disbursement

The body is of type object.

Response

201 - application/json

Request for Disbursement Successful

The response is of type object.