---
title: "Update key quorum"
method: PATCH
path: "/v1/key_quorums/{key_quorum_id}"
tags: ["Key quorums"]
---

# Update key quorum

`PATCH /v1/key_quorums/{key_quorum_id}`

Update a key quorum by key quorum ID.

## Path parameters

- `key_quorum_id` string, cuid2, required — A unique identifier for a key quorum.

## Headers

- `privy-app-id` string, required — ID of your Privy app.
- `privy-authorization-signature` string — Request authorization signature. If multiple signatures are required, they should be comma separated.
- `privy-request-expiry` string — Request expiry. Value is a Unix timestamp in milliseconds representing the deadline by which the request must be processed.

## Request body

- KeyQuorumUpdateRequestBody — Request input for updating an existing key quorum. At least one field must be provided.
  - `authorization_threshold` number — The number of keys that must sign for an action to be valid. Must be less than or equal to total number of key quorum members.
  - `display_name` string
  - `key_quorum_ids` string[] — List of key quorum IDs that should be members of this key quorum. Key quorums can only be nested 1 level deep.
  - `public_keys` string[] — List of P-256 public keys of the keys that should be authorized to sign on the key quorum, in base64-encoded DER format.
  - `user_ids` string[] — List of user IDs of the users that should be authorized to sign on the key quorum.

## Response `200`

Newly created key quorum.

- KeyQuorum — A key quorum for authorizing wallet operations.
  - `authorization_keys` AuthorizationKey[], required
    - `display_name` string, nullable, required
    - `public_key` string, required
  - `authorization_threshold` number, nullable, required
  - `display_name` string, nullable, required
  - `id` string, cuid2, required
  - `key_quorum_ids` string[] — List of nested key quorum IDs that are members of this key quorum.
  - `user_ids` string[], nullable, required

---

[API](https://skmtc.dev/privy-io/apis/privy-api.md) · [All operations](https://skmtc.dev/privy-io/apis/privy-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/privy-io/privy-api/revisions/bb2eb34156cc/schema)
