Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

Update Wallet

Update a wallet’s name or active status. PATCH /wallets/{id}  ·  🔒 Auth required

Request

{
  "name": "ETH Cold Storage",
  "active": true
}
FieldTypeDescription
namestringNew display name (2–100 chars)
activebooleanSet false to archive the wallet
The asset field cannot be changed after creation.

Response 200 OK

Returns the updated wallet object.

Example

curl -X PATCH https://api.sertexity.com/v1/wallets/wal_01hy2c4n8j5r3xyz \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '{"name":"ETH Cold Storage"}'