Skip to main content
POST
/
finance
/
payments
/
load
Load a manual payment
curl --request POST \
  --url http://134.209.118.139:3002/finance/payments/load \
  --header 'Content-Type: application/json' \
  --header 'x-access-token: <api-key>' \
  --data '
{
  "customerid": 662,
  "amount": 160000,
  "reference": "TXN123456",
  "narration": "Monthly installment"
}
'
{
  "message": "No token provided."
}

Authorizations

x-access-token
string
header
required

JWT token obtained from POST /api/auth/signin

Body

application/json
customerid
integer
required
Example:

662

amount
number
required
Example:

160000

reference
string
required
Example:

"TXN123456"

narration
string
Example:

"Monthly installment"

Response

Payment loaded