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

Authorizations

Authorization
string
header
required

A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.

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 0x-prefixed address of the EVM account. The address does not need to be checksummed.

Body

application/json

Response

200
application/json

Successfully updated EVM account.

The response is of type object.