Skip to main content
POST
/
transfers
Initiate a transfer
curl --request POST \
  --url https://api.notchpay.co/transfers \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 5000,
  "currency": "XAF",
  "beneficiary": "ben_123456789",
  "description": "Paiement de salaire",
  "channel": "cm.mtn",
  "recipient": "ben_123456789",
  "reference": "ref_123456789"
}
'
{
  "status": "Accepted",
  "message": "Transfer initialized",
  "code": 201,
  "transfer": "<unknown>"
}

Authorizations

Authorization
string
header
required

Body

application/json
amount
number
required
Example:

5000

currency
string
required
Example:

"XAF"

beneficiary
string
required
Example:

"ben_123456789"

description
string
required
Example:

"Paiement de salaire"

channel
string
Example:

"cm.mtn"

recipient
string
Example:

"ben_123456789"

reference
string
Example:

"ref_123456789"

Response

Transfer initialized

status
string
required
Example:

"Accepted"

message
string
required
Example:

"Transfer initialized"

code
integer
required
Example:

201

transfer
any
required