List accounts

List all accounts associated with the current platform (requires a platform token).

GET
/v1/accounts

Authorization

authorization
AuthorizationBearer <token>

In: header

Query Parameters

page?integer

Page number

Range1 <= value
page_size?integer

Number of items per page

Range1 <= value

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/accounts"
{  "data": [    {      "created_at": "2017-09-12T12:34:55Z",      "id": "acct_d025a96ac0c6",      "name": "Tender Medical",      "object": "account",      "updated_at": "2017-09-13T10:11:12Z"    }  ],  "meta": {    "current_page": 1,    "page_size": 10,    "total_count": 50,    "total_pages": 5  }}