Skip to main content
PATCH
/
v1
/
profiles
/
{id}
Modifier un profil
curl --request PATCH \
  --url https://api.plugkit.co/v1/profiles/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My Brand",
  "color": "#6366f1",
  "description": "<string>",
  "isDefault": false
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
name
string
Example:

"My Brand"

color
string
Example:

"#6366f1"

description
string
isDefault
boolean
default:false

Response

200 - undefined