Skip to main content
PATCH
/
vault
/
groups
/
{groupId}
Update vault group
curl --request PATCH \
  --url https://api.case.dev/vault/groups/{groupId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'

Authorizations

Authorization
string
header
required

API key starting with sk_case_

Path Parameters

groupId
string
required

Vault group ID

Body

application/json
name
string

New human-readable name for the vault group

description
string | null

Updated vault group description. Pass null to remove the current description.

Response

Vault group updated successfully