POST
/
billing
/
v1
/
transfer-recipients
/
validate
curl --request POST \
  --url https://sandbox-api.payfonte.com/billing/v1/transfer-recipients/validate \
  --header 'Content-Type: application/json' \
  --header 'client-id: <api-key>' \
  --header 'client-secret: <api-key>' \
  --data '{
  "currency": "USD, NGN, XOF, XAF",
  "country": "US, NG, CI, SN, CA, UK",
  "provider": "provider-slug",
  "account": {
    "phoneNumber": "2347012345678"
  }
}'
{
  "data": {
    "currency": "USD, NGN, XOF, XAF",
    "country": "US, NG, CI, SN, CA, UK",
    "provider": "provider-slug",
    "accountLabel": "Bank Transfer | Zenith Bank | Dummy User | 0123456789",
    "account": {
      "phoneNumber": "2347012345678"
    }
  }
}

Authorizations

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

Body

application/json

Validate a Transfer Recipient

The body is of type object.

Response

201 - application/json

Transfer Recipient Successfully Validated

The response is of type object.