Accounts - List
Overview
This endpoint allows you to list all accounts you are authorized to access.
Request
GET /v1/accounts/
Example Request
GET /v1/accounts/
Response
Response Values
| Key | Type | Example Value | Description |
|---|---|---|---|
| uuid | String | c99f9692429c | A unique ID for the given account. |
| default_promised_delivery_minutes | Integer or null | 60 | The default promised delivery minutes for the account |
| friendly_name | String | ChocoF | A friendly name |
| kind | String | store | fleet or store |
| partners_external_identifier | String | POSKing-224 | a specific external id assigned by the Partner creating the store |
| fleet_account_uuid | String or null | e96043b3d8d6 | The uuid of the fleet (account) if this account belongs to one |
Example Response
[
{
"uuid": "c99f9692429c",
"friendly_name": "ChocoF",
"kind": "store",
"partners_external_identifier": "POSKing-224",
"fleet_account_uuid": "e96043b3d8d6",
}
]