Skip to main content
POST
/
v1
/
profiles
Créer un profil
curl --request POST \
  --url https://api.plugkit.co/v1/profiles \
  --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.

Body

application/json
name
string
required
Example:

"My Brand"

color
string
Example:

"#6366f1"

description
string
isDefault
boolean
default:false

Response

201 - undefined