Create Brand
POST
/brandsThis endpoint allows you to create a new brand in the store
Request
multipart/form-data
The unique name or label associated with a specific company, manufacturer, or producer of products or services. 🌐 Support multi-language
Brand logo (string or file) is the visual representation of a brand, either in the form of an image or a file, with recommended dimensions typically set at 100x80** pixels
A text-based representation or URL link that directs to an image file, used as a visual symbol to identify and represent a brand on a webpage or platform.
Brand description is a brief overview that highlights key attributes, values, and qualities associated with a particular manufacturer or company, providing insights into its identity and offerings. 🌐 Support multi-language
Metadata Title which is a concise label used to optimize search engine results and enhance the visibility of a Brand page. 🌐Support multi-language
SEO Metadata Description:Concise content enhancing search visibility and social sharing. 🌐 Support multi-language
SEO Metadata URL: Web link for enhanced search engine visibility and social media sharing. 🌐 Support multi-language
Brand translations are based on the store's enabled language locale. For instance, if the store supports both Arabic and English, the translations
object will return two entries: ar
for Arabic and en
for English.
{
"name": "ابل",
"logo": "",
"banner": "",
"description": "شركه ابل",
"metadata_title": "ابل",
"metadata_description": "شركه ابل",
"metadata_url": "apple",
"translations": {
"en": {
"name": "Apple",
"description": "Apple brand",
"metadata_title": "Apple",
"metadata_description": "Apple brand",
"metadata_url": "apple",
}
}
}
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
Detailed structure of the brand model object showing its fields and data types.
A unique identifier assigned to a specific brand.
The label given to a particular company, to identify its products in the market. 🌐 Support multi-language
A brief summary of a manufacturer or company, highlighting key attributes, values, and offerings to convey its identity and purpose. 🌐 Support multi-language
A text or URL linking to a banner file, used as a visual identifier for a brand on a webpage or platform.
A text-based representation or URL link that directs to the logo file, used as a visual symbol to identify and represent a brand on a webpage or platform.
Brand represented in Arabic character
Brand represented in English character
{
"status": 201,
"success": true,
"data": {
"id": 1283560901,
"name": "salamaBrand",
"description": "Al Salama Brand",
"banner": "https://i.ibb.co/jyqRQfQ/avatar-male.webp",
"logo": "https://i.ibb.co/jyqRQfQ/avatar-male.webp",
"ar_char": "س",
"en_char": "s",
"metadata": {
"title": "Zara brand",
"description": "Brand awareness seo",
"url": "zara/item"
}
}
}