PUT
/
api
/
v3
/
brokerage
/
portfolios
/
{portfolio_uuid}
Edit Portfolio
curl --request PUT \
  --url https://api.coinbase.com/api/v3/brokerage/portfolios/{portfolio_uuid} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "portfolio": {
    "name": "<string>",
    "uuid": "<string>",
    "type": "UNDEFINED",
    "deleted": true
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

portfolio_uuid
string
required

The portfolio UUID.

Body

application/json
name
string

The name of the portfolio.

Response

A successful response.

portfolio
object

Portfolio is the identifying information for a portfolio.