curl --request POST \
--url https://api.projectcor.com/v1/brands \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"client_id": 123
}
'{
"id": 123,
"name": "<string>",
"client_id": 123
}Create a new brand entity.
curl --request POST \
--url https://api.projectcor.com/v1/brands \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"client_id": 123
}
'{
"id": 123,
"name": "<string>",
"client_id": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.