Dynamo Developer DocsDynamo Developer Docs
External APIOrganizations

List accessible organizations

List the organizations the caller can access. For an API-key caller this is the single org the key belongs to. Supports an optional case-insensitive `q` name filter and a `limit` cap, both applied in memory. This is the org-discovery entrypoint and does not require an organization to be in scope.

GET/organizations

Authorization

x-api-key x-date x-signature
x-api-key<token>

Your API key (the ApiKeys document id).

In: header

x-date<token>

Current timestamp in ISO-8601 (must be fresh — within −5s..+60s of server time).

In: header

x-signature<token>

HMAC-SHA256 of the x-date string keyed by your secret, lowercase hex.

In: header

Query Parameters

q?string

Case-insensitive substring filter on the organization name.

limit?integer

Max organizations to return.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/organizations"
[  {    "id": "string",    "name": "string",    "role": "D10XADMIN"  }]
{  "message": "string"}
{  "message": "string"}