curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_organization_configs \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>"
}'
{
  "configs": {
    "features": [
      {
        "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
        "value": "<string>"
      }
    ],
    "quorum": {
      "threshold": "<number>",
      "userIds": [
        "<string>"
      ]
    }
  }
}
POST
/
public
/
v1
/
query
/
get_organization_configs

Authorizations

X-Stamp
string
required
Cryptographically signed (stamped) request to be passed in as a header. For more info, see here.

Body

organizationId
string
required
Unique identifier for a given Organization.

Response

A successful response returns the following fields:
configs
object
required
configs field
curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_organization_configs \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <string> (see Authorizations)" \
  --data '{
    "organizationId": "<string>"
}'
{
  "configs": {
    "features": [
      {
        "name": "<FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY>",
        "value": "<string>"
      }
    ],
    "quorum": {
      "threshold": "<number>",
      "userIds": [
        "<string>"
      ]
    }
  }
}