Create a new payout
POST/create-payout
Create a new payout for a beneficiary
Request
- application/json
Body
required
Payout details
Possible values: >= 1
Amount to be paid (decimal with 2 decimal places)
Possible values: >= 3 characters
Purpose of the payout
Possible values: [claims
, operations
, salary
, equipment
, appliance
, other
]
Payment category
Possible values: >= 3 characters
Additional description for the payout
ID of the beneficiary (must exist in payer_beneficiaries)
Future date/time to schedule the payout (must be after current time)
Responses
- 201
- 401
- 403
- 422
- 500
Payout created successfully
- application/json
- Schema
- Example (from schema)
Schema
data object
Possible values: [0
, 1
, 2
, 3
, 4
, 5
, 6
, 7
, 8
, 9
, 10
]
Payment status: 0 - Pending 1 - Successful 2 - Awaiting Approval 3 - Failed 4 - Rejected 5 - Processing 6 - Approved 7 - Draft 8 - Awaiting Payment 9 - Failed Retry Pending 10 - Failed Retrying
Possible values: [claims
, operations
, salary
, equipment
, appliance
, other
]
{
"data": {
"id": 0,
"amount": 0,
"fee": 0,
"status": 0,
"status_text": "string",
"category": "claims",
"narration": "string",
"description": "string",
"description_short": "string",
"scheduled_for": "2025-03-24T01:38:57.343Z",
"initiated_at": "2025-03-24T01:38:57.343Z",
"completed_at": "2025-03-24T01:38:57.343Z",
"can_be_retried": true,
"total_amount": 0
}
}
Unauthorized
Forbidden
Validation error
Internal server error
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "An error occurred while attempting to create payout"
}