Delete brand

delete/v1/brand/delete

This API is used to delete the brand. You can delete the existing brand, and the deleted brand cannot be retrieved.

Code snippet

curl -X DELETE 'https://api.boldsign.com/v1/brand/delete?brandId={brandid}' \
      -H 'X-API-KEY: {your API key}'
var apiClient = new ApiClient("https://api.boldsign.com", "{your API key}");
var brandingClient = new BrandingClient(apiClient);
await brandingClient.DeleteBrandAsync("5f20d408-0ca6-4a00-a121-04ddd828b1df").ConfigureAwait(false);
import boldsign

configuration = boldsign.Configuration(
    api_key = "YOUR_API_KEY"
)

with boldsign.ApiClient(configuration) as api_client:
    
    branding_api = boldsign.BrandingApi(api_client)
    
    delete_brand_response = branding_api.delete_brand(
        brand_id="YOUR_BRAND_ID"
    )
const axios = require('axios'); 
const response = await axios.delete('https://api.boldsign.com/v1/brand/delete', { 

    params: { 
        'brandId': '{Enter your brandid here}' 
    }, 

    headers: { 
        'X-API-KEY': '{use your API-KEY here}' 
    } 
}); 

Query parameters

brandIdstringRequiredThe brand Id obtained after successful brand creation needs to be passed to delete the brand.

Example response

200 Success

{
  "message": "The brand has been deleted successfully"
}