Send money to recipients via Wave B2P and track payout status.Send Payout to Recipient#
Send money to a recipient via Wave B2P.Endpoint: POST /v1/payouts/recipients/send| Field | Type | Required | Description |
|---|
recipient_id | string | Yes | Recipient ID |
amount | string | Yes | Payout amount (minimum: 100 GMD) |
currency | string | Yes | Currency code (default: "GMD") |
notes | string | No | Optional notes |
{
"data": {
"id": "rp_abc123",
"recipient_id": "rcp_abc123",
"recipient_name": "Jane Doe",
"recipient_phone": "+2207654321",
"amount": "500.00",
"currency": "GMD",
"status": "processing",
"notes": "Monthly payout",
"created_at": "2024-01-15T10:30:00Z"
}
}
verified - Payout verified
processing - Payout being processed
completed - Payout completed successfully
List Recipient Payouts#
Get a paginated list of payouts sent to recipients.Endpoint: GET /v1/payouts/recipients/payouts| Parameter | Type | Required | Description |
|---|
offset | integer | No | Number of items to skip (default: 0) |
limit | integer | No | Maximum number of items to return (default: 20, max: 100) |
recipient_id | string | No | Filter by recipient ID |
status | string | No | Filter by status |
Get Recipient Payout#
Get details of a specific recipient payout.Endpoint: GET /v1/payouts/recipients/payouts/{id} Modified at 2025-11-15 15:43:35