Jèko
Transactions

List store transactions (Partner API)

GET
/partner_api/transactions

Authorization

ApiKey ApiKeyId
X-API-KEY<token>

In: header

X-API-KEY-ID<token>

In: header

Query Parameters

storeId?string

Store identifier

Formatuuid
page?integer

Page number (starts at 1)

Range1 <= value
limit?integer

Number of transactions per page (max 100)

Range1 <= value <= 100
startDate?string

Start date for filtering transactions (YYYY-MM-DD). Defaults to 7 days ago if not provided.

Formatdate
endDate?string

End date for filtering transactions (YYYY-MM-DD, max 90 days from startDate). Defaults to today if not provided.

Formatdate

Response 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"    }  ]}