Method: PATCH
URL: https://pim-client.wizart.ai/api/v2.1/brands/:brandUuid/
Header: Accept: application/json, Content-Type: applicaton/json, Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbG…
Body:
{
"data": {
"type": "brands",
"id": "e27fec1a-9305-4bf7-b3a6-d5e05a3621df",
"attributes": {
"name": "New brand name",
"is_visible": true,
"order": 16216400.046763062
}
}
}
CURL:
curl --location --request PATCH 'https://pim-client.wizart.ai/api/v2.1/brands/:brandUuid/' \
--header 'Authorization: Bearer <token>' \
--data '{
"data": {
"type": "<string>",
"id": "<string>",
"attributes": {
"name": "<string>",
"is_visible": "<string>",
"order": "<string>"
}
}
}'
{
"data": {
"id": "<string>",
"type": "<string>",
"attributes": {
"name": "<string>",
"image_path": "<string>",
"is_visible": "<boolean>",
"partially_visible": "<boolean>",
"is_default_cover": "<boolean>",
"order": "<string>"
}
}
}
Â