Toshl Developer

List connections

List all users bank connections.

GET /bank/connections

Required scope:

Parameters

page
optional
integer

Page to display, used for pagination.

Minimum: >= 0
Default value: 0
per_page
optional
integer

Number of resource objects to return.

Minimum: >= 10
Maximum: =< 500
Default value: 200
since
optional
string

Return all bank connections that were modified since timestamp.

Format: date-time

* denotes required field/parameter.

Request

$ curl https://api.toshl.com/bank/connections \
  -H "Authorization: Bearer T9cE5asGnuyYCCqIZFoWjFHvNbvVqHjl"

Response

HTTP/1.1 200 OK
Content-Type: application/json

[
  {
    "id": "42",
    "institution": "42",
    "accounts": ["42"],
    "name": "American Express",
    "unsorted": 0,
    "status": "connected"
  }
]