brands
Update a brand by project and brand id.
The endpoint receives as path param project id and brand id. If the project and brand exist, the brand is updated. Only NEW and PENDING_REVIEW brands can be updated.
put/v1/projects/{projectId}/brands/{brandId}
Path parameters
projectIdstring required
Customer's project id
brandIdstring required
Customer's brand id
Request body
Example request
{
"brandName": "My End Customer Brand Name",
"data": [
{
"companyName": "My Company Name",
"website": "https://www.mycompany.com",
"employeeCount": 150,
"isPublic": false
}
],
"callbackUrl": "https://example.com/callback"
}Response
OK
Example response
{
"brandId": "1234567890",
"brandName": "My End Customer Brand Name",
"brandMetadataId": "4444444444",
"status": "INCOMPLETE",
"data": [
{
"companyName": "My Company Name",
"website": "https://www.mycompany.com",
"employeeCount": 150,
"isPublic": false
}
],
"logs": [
{
"status": "INCOMPLETE",
"createTime": "2023-10-01 12:00:00+00:00",
"comment": "Brand created successfully.",
"author": "CUSTOMER"
}
],
"callbackUrl": "https://example.com/callback",
"createTime": "2023-10-01 12:00:00+00:00",
"updateTime": "2023-10-01 12:00:00+00:00"
}