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

Authorizations

Authorization
string
header
required

Bearer token authentication using OAuth2 access token

Path Parameters

brand_id
string
required

Unique identifier of the brand

Body

application/json

Brand details to update

The body is of type object.

Response

200
application/json

Brand details updated successfully

The response is of type object.