v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB

Get Corporate Account Statement

Get a list of transactions associated with a corporate account, i.e. your own company account registered under your application.

post/corporate/account/statement

Headers

api-keystring required

Your Striga API key

Authorizationstring required

Your HMAC signature

Request body

applicationIdstring required

Your application Id - The same as is used in the UI headers

accountIdstring required

Unique Id of an account belonging to any wallet of this user

startDatestring date-time required

Format as a UNIX Epoch timestamp with ms precision

endDatestring date-time required

Format as a UNIX Epoch timestamp with ms precision

pageinteger required

Page number

limitinteger

This parameter specifies the maximum number of results to be returned, Please note that the maximum limit is capped at 100 for each request.

Response

200

countinteger
totalinteger

Example response

{
  "transactions": [
    {
      "id": "f07da634-3759-4aed-9112-a0b6bc448f40",
      "credit": 200,
      "timestamp": "2022-08-05T12:23:43.163Z",
      "txType": "INTER_LEDGER_SEND",
      "memoPayer": "embrace channels compelling",
      "exchangeRate": 1,
      "balanceBefore": {
        "amount": 200,
        "currency": "cents"
      },
      "balanceAfter": {
        "amount": 400,
        "currency": "cents"
      }
    }
  ],
  "count": 2,
  "total": 2
}