Transactions

get

Get Transactions

pageint
Default
0
sizeint
Default
50

Responses

Response examples

Successful Response

{
  "items": [
    {
      "amount": 123,
      "currency": null,
      "type": null,
      "external_key": "string",
      "meta": {},
      "description": "string",
      "id": "string",
      "tpp_id": "string",
      "tpp_user_id": "string",
      "tpp_user_account_id": "string"
    }
  ],
  "total": 123,
  "page": 123,
  "size": 123
}
post

Create User Transaction

Create User transaction

amountint

required

currency

required

List of available currencies in ISO 4217 https://en.wikipedia.org/wiki/ISO_4217

type

required

Transaction types

external_keystring

required

metaobject (Meta)
descriptionstring

Responses

Request examples

{
  "amount": 123,
  "currency": null,
  "type": null,
  "external_key": "string",
  "meta": {},
  "description": "string"
}

Response examples

Successful Response

{
  "amount": 123,
  "currency": null,
  "type": null,
  "external_key": "string",
  "meta": {},
  "description": "string",
  "id": "string",
  "tpp_id": "string",
  "tpp_user_id": "string",
  "tpp_user_account_id": "string"
}
get

Get Transaction

tpp_user_idstring

required

account_idstring

required

transaction_idstring

required

Responses

Response examples

Successful Response

{
  "amount": 123,
  "currency": null,
  "type": null,
  "external_key": "string",
  "meta": {},
  "description": "string",
  "id": "string",
  "tpp_id": "string",
  "tpp_user_id": "string",
  "tpp_user_account_id": "string"
}

Was this page helpful?