Nimbu Developer Docs
ReferenceAccounts

List site accounts

GET
/accounts

Returns every account connected to the authenticated site, including display names and identifiers.

Authorization

AuthorizationBearer <token>

Personal access token tied to a user account. Requires the X-Nimbu-Site header to scope requests.

In: header

X-Nimbu-Site<token>

Identifier of the site context when authenticating with a personal access token.

In: header

Response Body

application/json

curl -X GET "https://example.com/accounts"
[
  {
    "id": "string",
    "created_at": "2019-08-24T14:15:22Z",
    "updated_at": "2019-08-24T14:15:22Z",
    "url": "http://example.com",
    "name": "string",
    "plan": "string",
    "sku_count": 0,
    "site_count": 0,
    "storage_count": 0,
    "users_count": 0,
    "locale": "string",
    "owner": "string",
    "sites": [
      "string"
    ]
  }
]
Empty