List store transactions (Partner API)
Authorization
ApiKey ApiKeyId In: header
In: header
Query Parameters
Store identifier
uuidPage number (starts at 1)
1 <= valueNumber of transactions per page (max 100)
1 <= value <= 100Start date for filtering transactions (YYYY-MM-DD). Defaults to 7 days ago if not provided.
dateEnd date for filtering transactions (YYYY-MM-DD, max 90 days from startDate). Defaults to today if not provided.
dateResponse Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/partner_api/transactions"{ "total": 0, "perPage": 0, "currentPage": 0, "data": [ { "id": "string", "type": "payment", "status": "pending", "amount": { "amount": 0, "currency": "XOF" }, "fees": { "amount": 0, "currency": "XOF" }, "currency": "string", "paymentMethod": "orange", "counterpartLabel": "string", "counterpartIdentifier": "string", "description": "string", "reference": "string", "createdAt": "2019-08-24T14:15:22Z" } ]}List devices (Partner API) GET
Previous Page
Create transfer (Partner API) POST
Creates a transfer from a store wallet to a beneficiary. **Beneficiary resolution (provide exactly one):** - **Existing contact:** `contactId` of a previously created beneficiary - **Inline beneficiary:** `name`, `paymentMethod`, and `identifier` — auto-creates a hidden contact that is excluded from `GET /partner_api/contacts` until explicitly created via `POST /partner_api/contacts`