PUT
/
v2
/
evm
/
smart-accounts
/
{address}
Update an EVM Smart Account
curl --request PUT \
  --url https://api.cdp.coinbase.com/platform/v2/evm/smart-accounts/{address} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "my-smart-account"
}'
{
  "address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
  "owners": [
    "0xfc807D1bE4997e5C7B33E4d8D57e60c5b0f02B1a"
  ],
  "name": "my-smart-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.

Path Parameters

address
string
required

The 0x-prefixed address of the EVM smart account. The address does not need to be checksummed.

Body

application/json

Response

200
application/json

Successfully updated EVM smart account.

The response is of type object.