GET
/
accounts
/
{account_id}
/
wallet
/
entries
curl --request GET \
  --url https://api.togai.com/accounts/{account_id}/wallet/entries \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "wallet.q3df.1241",
      "description": "payment",
      "walletId": "cred.1234.2342",
      "transactionType": "CREDITED",
      "entityId": "inv.wrwerw.4234e",
      "amount": 500,
      "createdAt": "2023-11-07T05:31:56Z",
      "closingBalance": 500
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account_id
string
required

account_id corresponding to an account

Maximum length: 50

Query Parameters

nextToken
string

Pagination token used as a marker to get records from next page.

pageSize
integer

Maximum page size expected by client to return the record list.

NOTE: Max page size cannot be more than 50. Also 50 is the default page size if no value is provided.

Response

200
application/json
Response for Credit Balance Request

List wallet entries response

data
object[]
required
nextToken
string
Maximum length: 500