Delete a brand

Delete brand at organization level . A brand can be deleted if it doesn't have any active campaigns.

delete

/organizations/{organizationId}/tcr-brands/{brandId}

Authorizations
Path parameters
organizationIdstring · uuidrequired

The ID for the organization.

Example: d0b85ccc-b63a-4e81-b698-c359d77d250e
brandIdstringrequired

A unique identifier for the brand.

Responses
curl -L \
  --request DELETE \
  --url '/organizations/{organizationId}/tcr-brands/{brandId}' \
  --header 'Authorization: Bearer jwt'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "organizationId": "123e4567-e89b-12d3-a456-426614174000",
  "createdAt": "2025-02-21T18:02:55.615Z",
  "updatedAt": "2025-02-21T18:02:55.615Z",
  "status": "PENDING",
  "entityType": "PRIVATE_PROFIT",
  "firstName": "John",
  "lastName": "Doe",
  "displayName": "ABC Mobile",
  "companyName": "ABC Inc.",
  "ein": "111111111",
  "einIssuingCountry": "US",
  "phone": "+12024567890",
  "street": "123 6th Ave",
  "city": "New York",
  "state": "NY",
  "postalCode": "10001",
  "country": "US",
  "email": "johndoe@abc.com",
  "stockSymbol": "ABC",
  "stockExchange": "NASDAQ",
  "website": "https://example.com",
  "vertical": "RETAIL",
  "altBusinessId": "text",
  "altBusinessIdType": "NONE",
  "businessContactEmailVerifiedDate": "2025-02-21T18:02:55.615Z",
  "workspaceIds": [
    "123e4567-e89b-12d3-a456-426614174000"
  ],
  "businessContactEmail": "hello@example.com",
  "rejection": {
    "description": "text",
    "code": "text"
  }
}

Last updated

Was this helpful?