Dashform

List the caller's Organizations

List a page of Organizations the credential's user belongs to, in membership creation order. Follow nextPageToken to read subsequent pages.

GET
/organizations
x-api-key<token>

A Dashform API key, sent in the x-api-key header. Keys are created in the dashboard and act as the user who owns them.

In: header

Query Parameters

filter?string

Accepted and ignored; this collection declares no filterable fields.

Default""
orderBy?string

Accepted and ignored; Organizations retain membership creation order.

Default""
pageSize?number

Maximum number of resources to return in one page. Omit or set to 0 to return up to 10 resources. Values above 1000 are capped at 1000. A page may contain fewer resources than requested; use nextPageToken to continue.

Default10
pageToken?string

Opaque continuation token from the previous list response.

Default""
skip?number

Number of resources to skip before returning a page, starting from the page token's position if supplied. Omit or set to 0 to skip none. Skipping past the end returns an empty page and no continuation token.

Default0

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/organizations"
{  "nextPageToken": "string",  "totalSize": 0,  "organizations": [    {      "createTime": "string",      "logo": "string",      "metadata": "string",      "name": "string",      "path": "string",      "slug": "string"    }  ]}