Body
Enum options: ACTIVITY_TYPE_UPDATE_ROOT_QUORUM
Timestamp (in milliseconds) of the request, used to verify liveness of user requests.
Unique identifier for a given Organization.
parameters field
The threshold of unique approvals to reach quorum.
The unique identifiers of users who comprise the quorum set.
Array item type: string
item field
Response
A successful response returns the following fields:
The activity object containing type, intent, and result
The intent of the activity
activity.intent.updateRootQuorumIntent
The updateRootQuorumIntent objectShow updateRootQuorumIntent details
activity.intent.updateRootQuorumIntent.threshold
The threshold of unique approvals to reach quorum.
activity.intent.updateRootQuorumIntent.userIds
The unique identifiers of users who comprise the quorum set.
activity.intent.updateRootQuorumIntent.userIds.item
The result of the activity
activity.result.updateRootQuorumResult
The updateRootQuorumResult object
curl --request POST \
--url https://api.turnkey.com/public/v1/submit/update_root_quorum \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
--data '{
"type": "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM",
"timestampMs": "<string> (e.g. 1746736509954)",
"organizationId": "<string> (Your Organization ID)",
"parameters": {
"threshold": 123,
"userIds": [
"<string_element>"
]
}
}'
{
"activity": {
"id": "<activity-id>",
"status": "ACTIVITY_STATUS_COMPLETED",
"type": "ACTIVITY_TYPE_UPDATE_ROOT_QUORUM",
"organizationId": "<organization-id>",
"timestampMs": "<timestamp> (e.g. 1746736509954)",
"result": {
"activity": {
"type": "<string>",
"intent": {
"updateRootQuorumIntent": {
"threshold": 123,
"userIds": [
"<string_element>"
]
}
},
"result": {
"updateRootQuorumResult": {}
}
}
}
}
}