Documentation Index
Fetch the complete documentation index at: https://turnkey-0e7c1f5b-ethan-captcha-protection.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
API Key
WebAuthn (Passkey)
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Body
Unique identifier for a given organization.
Response
A successful response returns the following fields:
configs field
features field
name fieldEnum options: FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY, FEATURE_NAME_WEBAUTHN_ORIGINS, FEATURE_NAME_EMAIL_AUTH, FEATURE_NAME_EMAIL_RECOVERY, FEATURE_NAME_WEBHOOK, FEATURE_NAME_SMS_AUTH, FEATURE_NAME_OTP_EMAIL_AUTH, FEATURE_NAME_AUTH_PROXY
quorum field
Count of unique approvals required to meet quorum.
Unique identifiers of quorum set members.
configs.quorum.userIds.item
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>"
]
}
}
}