Skip to main content
DELETE
https://integrations.projectcor.com
/
v2
/
integrations
/
brands
/
{id}
curl --location --request DELETE '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"
  }
}'
{
  "message": "Brand deleted successfully",
  "external_id": "SF-BRAND-12345",
  "cor_id": 3001
}
Deletes a brand from your COR instance using its external ID. This removes both the brand and the integration mapping.

Path Parameters

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

Request Body Requirements

metadata
object
required

Known Errors

  • BrandNotFoundError — No brand found with the specified external ID for this source
  • ValidationError — Missing required metadata.source field
  • DeletionError — Brand cannot be deleted due to existing project associations
curl --location --request DELETE '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"
  }
}'
{
  "message": "Brand deleted successfully",
  "external_id": "SF-BRAND-12345",
  "cor_id": 3001
}