PUT
/
v2
/
solana
/
accounts
/
{address}
curl --request PUT \
  --url https://api.cdp.coinbase.com/platform/v2/solana/accounts/{address} \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "my-wallet",
  "accountPolicy": "123e4567-e89b-12d3-a456-426614174000"
}'
{
  "address": "HpabPRRCFbBKSuJr5PdkVvQc85FyxyTWkFM2obBRSvHT",
  "name": "my-account",
  "policies": [
    "123e4567-e89b-12d3-a456-426614174000"
  ],
  "createdAt": "2025-03-25T12:00:00Z",
  "updatedAt": "2025-03-26T12:00:00Z"
}

Headers

X-Idempotency-Key
string

An optional UUID v4 request header for making requests safely retryable. When included, duplicate requests with the same key will return identical responses. Refer to our Idempotency docs for more information on using idempotency keys.

Required string length: 36

Path Parameters

address
string
required

The base58 encoded address of the Solana account.

Body

application/json

Response

200
application/json

Successfully updated Solana account.

The response is of type object.