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
GET https://pay.sandbox.yabetoopay.com/v1/remittance/{id} # Sandbox
GET https://pay.api.yabetoopay.com/v1/remittance/{id} # Production
Authentication
Use your secret key in the Authorization header:
Authorization: Bearer YOUR_SECRET_KEY
Path Parameters
| Parameter | Type | Description |
|---|
id | string | The unique ID of the remittance |
Example Request
curl https://pay.sandbox.yabetoopay.com/v1/remittance/rem_RMqehxy8NNi1ocJFG2SSAZMj81m6spo72vnZ \
-H "Authorization: Bearer YOUR_SECRET_KEY"
Response
200 OK
{
"id": "rem_RMqehxy8NNi1ocJFG2SSAZMj81m6spo72vnZ",
"object": "remittance",
"amount": 1000,
"currency": "xaf",
"status": "succeeded",
"firstName": "John",
"lastName": "Doe",
"operatorName": "mtn",
"country": "cg",
"phone": "242066594470",
"type": 1,
"shouldExecutedAt": "2025-03-18T09:24:57.555Z",
"createdAt": "2025-03-17T10:24:57.559+01:00",
"updatedAt": "2025-03-17T10:24:57.559+01:00"
}
Remittance Status
| Status | Description |
|---|
pending | Remittance is waiting to be processed |
processing | Remittance is being processed |
succeeded | Remittance completed successfully |
failed | Remittance failed |
404 Not Found
{
"message": "Remittance not found"
}
401 Unauthorized
{
"message": "Unauthorized"
}