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
Get Configs
Get quorum settings and features for an organization
POST
/
public
/
v1
/
query
/
get_organization_configs
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>"
}'
{
"configs": {
"features": [
{
"name": "FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY",
"value": "<string>"
}
],
"quorum": {
"threshold": 123,
"userIds": [
"<string>"
]
}
}
}
Authorizations
Body
application/json
Unique identifier for a given Organization.
Response
200 - application/json
A successful response.
Was this page helpful?
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>"
}'
{
"configs": {
"features": [
{
"name": "FEATURE_NAME_ROOT_USER_EMAIL_RECOVERY",
"value": "<string>"
}
],
"quorum": {
"threshold": 123,
"userIds": [
"<string>"
]
}
}
}