Manage payout recipients for Wave B2P (Business-to-Person) transfers.Create Payout Recipient#
Create a new payout recipient.Endpoint: POST /v1/payouts/recipients| Field | Type | Required | Description |
|---|
name | string | Yes | Recipient name |
payout_phone | string | Yes | Phone number for receiving payouts (Wave, Afrimoney) |
email | string | No | Recipient email address |
payout_method | string | No | Payment method (wave, afrimoney) |
recipient_type | string | No | Type of recipient |
internal_reference | string | No | Internal reference for tracking |
notes | string | No | Additional notes |
is_active | boolean | No | Whether recipient is active (default: true) |
metadata | object | No | Custom metadata |
{
"data": {
"id": "rcp_abc123",
"organization_id": "org_xyz789",
"name": "Jane Doe",
"email": "jane@example.com",
"payout_method": "wave",
"payout_phone": "+2207654321",
"recipient_type": null,
"internal_reference": null,
"notes": null,
"is_active": true,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
}
Get Payout Recipient#
Get details of a specific payout recipient.Endpoint: GET /v1/payouts/recipients/{id}{
"data": {
"id": "rcp_abc123",
"organization_id": "org_xyz789",
"name": "Jane Doe",
"email": "jane@example.com",
"payout_method": "wave",
"payout_phone": "+2207654321",
"recipient_type": null,
"internal_reference": "EMP-001",
"notes": "Monthly contractor",
"is_active": true,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
}
List Payout Recipients#
Get a paginated list of payout recipients.Endpoint: GET /v1/payouts/recipients| 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) |
{
"data": {
"items": [
{
"id": "rcp_abc123",
"name": "Jane Doe",
"email": "jane@example.com",
"payout_phone": "+2207654321",
"payout_method": "wave",
"is_active": true,
"created_at": "2024-01-15T10:30:00Z"
}
],
"count": 1,
"offset": 0,
"limit": 20
}
}
Update Payout Recipient#
Update an existing payout recipient.Endpoint: PUT /v1/payouts/recipients/{id}| Field | Type | Required | Description |
|---|
name | string | No | Recipient name |
payout_phone | string | No | Payout phone number |
email | string | No | Recipient email |
payout_method | string | No | Payment method |
internal_reference | string | No | Internal reference |
notes | string | No | Additional notes |
is_active | boolean | No | Whether recipient is active |
metadata | object | No | Custom metadata |
{
"data": {
"id": "rcp_abc123",
"organization_id": "org_xyz789",
"name": "Jane Doe",
"email": "jane@example.com",
"payout_method": "wave",
"payout_phone": "+2207654321",
"recipient_type": null,
"internal_reference": "EMP-001",
"notes": "Updated contractor information",
"is_active": true,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T11:00:00Z"
}
}
Delete Payout Recipient#
Delete a payout recipient.Endpoint: DELETE /v1/payouts/recipients/{id}Success Response (204): No content Modified at 2025-11-15 15:43:35