ConsistlyAPI
Organizations

List organisations accessible to the caller

Returns the organisations this API key spans — almost always exactly one (the key’s owning organisation).

GET
/organizations
AuthorizationBearer <token>

Bearer API key in the form sk_live_…, sk_test_…, or pk_live_…. Keys are issued from the Consistly dashboard and carry product-prefixed scopes.

In: header

Response Body

application/json

curl -X GET "https://example.com/organizations"
{  "object": "list",  "data": [    {      "id": "string",      "object": "organization",      "name": "string",      "type": "string",      "website": "string",      "created": "2019-08-24T14:15:22Z",      "updated": "2019-08-24T14:15:22Z",      "created_by": "string"    }  ],  "has_more": true,  "url": "string"}