API Reference
- Overview
- Organizations
- Invitations
- Policies
- Features
Wallets and Private Keys
- Wallets
- Signing
- Private Keys
- Private Key Tags
Users
- Users
- User Tags
- User Recovery
- User Auth
Credentials
- Authenticators
- API keys
- Sessions
Activities
- Activities
- Consensus
Organizations
Get Configs
Get quorum settings and features for an organization
POST
/
public
/
v1
/
query
/
get_organization_configs
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_organization_configs \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>"
}'
Copy
Ask AI
{
"configs": {
"features": [
{
"name": "FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY",
"value": "<string>"
}
],
"quorum": {
"threshold": 123,
"userIds": [
"<string>"
]
}
}
}
Authorizations
Body
application/json
Response
200 - application/json
A successful response.
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_organization_configs \
--header 'Content-Type: application/json' \
--header 'X-Stamp: <api-key>' \
--data '{
"organizationId": "<string>"
}'
Copy
Ask AI
{
"configs": {
"features": [
{
"name": "FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY",
"value": "<string>"
}
],
"quorum": {
"threshold": 123,
"userIds": [
"<string>"
]
}
}
}
Assistant
Responses are generated using AI and may contain mistakes.