List organizations
GET
/v1/organizationsLists the organizations this credential can access. A credential is bound to exactly one organization today, so the list always fits one page.
Required scopes
workspaces:read
Availability
All plans
Quota cost
1 API call
Idempotency
Not applicable
Request
This operation takes no parameters or body — just your credential.
Response 200
The organizations visible to this credential.
Fields
| Field | Type | Description |
|---|---|---|
datarequired | object[] | The current page of results. |
has_morerequired | boolean | True when another page exists after this one. |
next_cursorrequired | string | null | Opaque cursor for the next page (pass as `after`); null on the last page. |
▸ ▾ Raw response schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Organization"
},
"description": "The current page of results."
},
"has_more": {
"type": "boolean",
"description": "True when another page exists after this one."
},
"next_cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Opaque cursor for the next page (pass as `after`); null on the last page."
}
},
"required": [
"data",
"has_more",
"next_cursor"
],
"additionalProperties": false,
"description": "Cursor-envelope page of organizations."
}Example request
curl
curl -X GET https://app.nowgetitdone.com/v1/organizations \
-H "Authorization: Bearer gid_YOUR_API_KEY"Possible errors
- 401
missing_credentialsMissing credentials - 401
invalid_api_keyInvalid API key - 401
invalid_tokenInvalid access token - 403
insufficient_scopeInsufficient scope - 403
feature_not_enabledFeature not enabled on this plan - 429
rate_limitedRate limit exceeded - 429
quota_exhaustedPlan quota exhausted - 500
internal_errorInternal server error