Skip to main content
PUT
https://integrations.projectcor.com
/
v2
/
integrations
/
brands
/
{id}
curl --location --request PUT 'https://integrations.projectcor.com/v2/integrations/brands/SF-BRAND-12345' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "SALESFORCE"
  },
  "name": "Acme Premium Plus"
}'
{
  "id": 3001,
  "name": "Acme Premium Plus",
  "client_id": 25855,
  "company_id": 1234,
  "user_id": 8546,
  "created_at": "2025-01-10T14:30:00Z",
  "updated_at": "2025-01-15T10:00:00Z"
}
Updates an existing brand in your COR instance using its external ID.

Path Parameters

id
string
required
External brand ID that was used when creating the brand

Request Body Requirements

metadata
object
required
name
string
Updated brand name

Known Errors

  • ZC001 — Entity is not associated (brand with the specified external ID not found)
  • BrandNotFoundError — No brand found with the specified external ID for this source
  • ValidationError — Missing required metadata.source field
curl --location --request PUT 'https://integrations.projectcor.com/v2/integrations/brands/SF-BRAND-12345' \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
  "metadata": {
    "source": "SALESFORCE"
  },
  "name": "Acme Premium Plus"
}'
{
  "id": 3001,
  "name": "Acme Premium Plus",
  "client_id": 25855,
  "company_id": 1234,
  "user_id": 8546,
  "created_at": "2025-01-10T14:30:00Z",
  "updated_at": "2025-01-15T10:00:00Z"
}