Skip to content

Update profile

Updates a profile's name, description, color, or default status.

PUT /v1/profiles/{profileId}

Updates a profile's name, description, color, or default status.

Parameters

  • profileId (path, string) required

Request body

Content-Type: application/json

  • name (string)
  • description (string)
  • color (string)
  • isDefault (boolean)

Example:

json

{
  "name": "Marketing Team (Updated)",
  "color": "#2196F3",
  "isDefault": true
}

Responses

200 — Updated

  • message (string)
  • profile ($ref)

401

404