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

Path Parameters

portfolio_uuid
string
required

The portfolio UUID.

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.