POST
/
brands
curl --request POST \
  --url https://api.charp.ai/brands \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "vendor_id": "<string>"
}'
{
  "brand_id": "<string>",
  "name": "<string>",
  "vendor_id": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication using OAuth2 access token

Body

application/json
Brand details to create
name
string
required

Name of the new brand

vendor_id
string
required

ID of the vendor creating the brand

Response

200
application/json
Brand created successfully
brand_id
string
required

Unique identifier of the brand

name
string
required

Name of the brand

vendor_id
string
required

ID of the vendor managing the brand