Documentation Index
Fetch the complete documentation index at: https://docs.yabetoopay.com/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
Use your secret key in theAuthorization header:
Secret key security: The secret key must be kept confidential and
must never be exposed in the frontend or client code. It must only be used on
the server side.
Request Body
| Parameter | Type | Required | Description |
|---|---|---|---|
amount | number | Yes | The amount to transfer |
currency | string | Yes | Currency code (e.g., XAF, XOF) |
first_name | string | Yes | Customer’s first name |
last_name | string | Yes | Customer’s last name |
payment_method_data | object | Yes | Payment method details |
payment_method_data structure
| Field | Description |
|---|---|
type | Payment method type (momo for Mobile Money) |
momo.msisdn | Customer’s phone number |
momo.country | Country code (e.g., CG, CM) |
momo.operator_name | Operator name (mtn, airtel) |
Example Request
Response
200 OK
When the disbursement was successfully created, the API will return a 200 OK response. The status of the disbursement isprocessing because the payment is still being processed and has not been executed yet.
Disbursement Status
| Status | Description |
|---|---|
processing | Being processed |
succeeded | Disbursement completed successfully |
failed | Disbursement failed |
canceled | Disbursement was canceled |
400 Bad Request
401 Unauthorized
Disbursements are processed asynchronously. Use webhooks
to track their status in real-time.