GET
/
organizations
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/organizations \
  --header 'Authorization: Bearer <token>'
{
  "orgs": [
    {
      "id": "<string>",
      "name": "<string>",
      "sequence_credits": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

Maximum number of items to return (default: 50)

offset
integer

Number of items to skip (default: 0)

leq(created_at)
string

Filter by created_at <= value (ISO date or timestamp)

geq(created_at)
string

Filter by created_at >= value (ISO date or timestamp)

lss(created_at)
string

Filter by created_at < value (ISO date or timestamp)

gtr(created_at)
string

Filter by created_at > value (ISO date or timestamp)

equ(created_at)
string

Filter by created_at = value (ISO date or timestamp)

Response

200 - application/json

Successfully retrieved organization list

Container for a list of organization summaries.

Returns organizations where the authenticated user has access permissions.