List tenants
Retrieve a paginated list of tenants who belong to the specified organization. Supports filtering and sorting over tenant properties. Filters are provided as a JSON string following the FilterNode AST structure. Results are returned in pages with pagination metadata.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The unique identifier of the organization
24^[0-9a-f]{24}$Query Parameters
Page number (default: 1)
x >= 1Number of items per page
1 <= x <= 100Sorting field with optional order suffix (:asc or :desc), e.g., "name", "name:asc", "create_date:desc". Use ascending order by default if no suffix is provided. Valid fields: id, create_date, name, region, product_id, policy_id
Comma-separated list of fields to include in each tenant element. Selectable fields: id, organization_id, create_date, name, region, product_id, policy_id. The field id is always included.
2048Filter tenants by one or more criteria. Provide a JSON object with filter conditions. You can filter by any field returned in the response. Use comparison operators (eq, ne, gt, gte, lt, lte, in, nin, contains, startsWith, endsWith, between) and combine multiple conditions with logical operators (and, or). Maximum length: 5120 characters. Filter tenants using a JSON object. Specify the field to filter, comparison operator, and value. Example: {"field": "name", "op": "eq", "value": "Tenant 1"}
5120"{\"field\": \"name\", \"op\": \"eq\", \"value\": \"Tenant 1\"}"