ZITADEL Docs
APIsCore ResourcesV2Settings

ListOrganizationSettings

List Organization Settings

Returns a list of organization settings.

Required permission:

  • iam.policy.read
  • org.policy.read
POST
/v2/settings/organization/search

Request Body

application/json

pagination?

List limitations and ordering.

sortingColumn?string

The field the result is sorted by. The default is the creation date. Beware that if you change this, your result pagination might be inconsistent.

Value in"ORGANIZATION_SETTINGS_FIELD_NAME_UNSPECIFIED" | "ORGANIZATION_SETTINGS_FIELD_NAME_ORGANIZATION_ID" | "ORGANIZATION_SETTINGS_FIELD_NAME_CREATION_DATE" | "ORGANIZATION_SETTINGS_FIELD_NAME_CHANGE_DATE"
filters?

Define the criteria to query for.

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/v2/settings/organization/search" \  -H "Content-Type: application/json" \  -d '{}'
{
  "pagination": {
    "totalResult": 0,
    "appliedLimit": 0
  },
  "organizationSettings": [
    {
      "organizationId": "string",
      "creationDate": "1s",
      "changeDate": "1s",
      "organizationScopedUsernames": true
    }
  ]
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?