Transactions

Download Spec

Get Transactions

get /users/{tpp_user_id}/accounts/{account_id}/transactions

page

integer

Default
0

size

integer

Default
50

Response

ExamplesSchema

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": null,
  "page": null,
  "size": 123
}

Create User Transaction

post /users/{tpp_user_id}/accounts/{account_id}/transactions

Create User transaction

amount

int

required

currency

required

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

type

required

Transaction types

external_key

string

required

meta

object (meta)

description

string

Request

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

Response

ExamplesSchema

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 Transaction

get /users/{tpp_user_id}/accounts/{account_id}/transactions/{transaction_id}

tpp_user_id

string

required

account_id

string

required

transaction_id

string

required

Response

ExamplesSchema

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?