Skip to main content
GET
/
v1
/
remittance
Get all remittances
curl --request GET \
  --url https://pay.sandbox.yabetoopay.com/v1/remittance \
  --header 'Authorization: Bearer <token>'
{
  "meta": {
    "total": 2,
    "perPage": 10,
    "currentPage": 1,
    "lastPage": 1,
    "firstPage": 1,
    "firstPageUrl": "/?page=1",
    "lastPageUrl": "/?page=1",
    "nextPageUrl": null,
    "previousPageUrl": null
  },
  "data": [
    {
      "id": "rem_xxx",
      "object": "remittance",
      "walletId": "<string>",
      "financialTransactionId": "<string>",
      "transactionId": "<string>",
      "amount": 123,
      "currency": "xaf",
      "status": "succeeded",
      "failureCode": null,
      "failureMessage": null,
      "externalId": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "executedAt": "2023-11-07T05:31:56Z",
      "shouldExecutedAt": "2023-11-07T05:31:56Z",
      "otp": null,
      "phone": "<string>",
      "country": "cg",
      "operatorName": "mtn",
      "firstName": "Scoty",
      "lastName": "Loumbou",
      "type": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of remittances with pagination metadata

meta
object
data
object[]
I