Update Key

PUT /keys/{keyId}

Updates the name of an existing key.

Required Permissions

Name
Conditions

Keys:Update

Always Required

Parameters

Path parameters

Path parameter
Description

keyId

Unique identifier of the key.

Request Body

Field
Description
Type

name

New name for the key.

String

Example

{
  "name": "new key name"
}

Response Body

See Create Key response.

200 Success

{
  "id": "key-6ece3-9l565-xxxxxxxxxxxxxxxx",
  "name": "new key name",
  "scheme": "ECDSA",
  "curve": "secp256k1",
  "publicKey": "02660461d66a637ea2d2ee3565669ad794f51ca3e0812ff03a0fe4820a19754839",
  "status": "Active",
  "custodial": true,
  "dateCreated": "2025-03-26T20:25:52.909Z"
}

Last updated