Update Wallet

PUT /wallets/{walletId}

Updates the name or externalID of an existing Wallet.

Required Permissions

NameConditions

Wallets:Update*

Always Required

Path parameters

Path parameterDescription

walletId

Unique identifier of the Wallet. ex. wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx

Request

PropertyType - OptionalDescription

name

String - Optional

Name given to the wallet

externalid

String - Optional

External id usually used as a foreign key to an external database.

Example

{
  "name": "my-wallet-updated"
}

Response

200 Response example

{
  "id": "wa-1f04s-lqc9q-xxxxxxxxxxxxxxxx",
  "network": "EthereumSepolia",
  "status": "Active",
  "name": "My awesome wallet",
  "address": "0x00e3495cf6af59008f22ffaf32d4c92ac33dac47",
  "dateCreated": "2023-04-14T20:41:28.715Z",
  "signingKey": {
    "curve": "secp256k1",
    "scheme": "ECDSA",
    "publicKey": "e2375c8c9e87bfcd0be8f29d76c818cabacd51584f72cb2222d49a13b036d84d3d"
  }
}

Last updated