Skip to main content

Create Brand

POST 

https://sight.inspectorio.com/api/v1/brands

Create Brand

Request​

Body

    brandIdstringrequired

    Custom ID of the brand

    Possible values: non-empty

    Example: brand_1
    descriptionstringnullable

    Brand description

    Example: Modern Menswear
    namestringrequired

    Name of the brand

    Possible values: non-empty

    Example: Acme

Responses​

Created

Schema
    data object

    Brand data

    brandIdstringrequired

    Unique identifier of the brand

    Example: brand_1
    descriptionstring

    Brand description

    Example: Modern Menswear
    namestringrequired

    Brand name

    Example: Acme

Authorization: apiKey

name: apiKeytype: apiKeyin: header
curl -L 'https://sight.inspectorio.com/api/v1/brands' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'apiKey: <apiKey>' \
-d '{
"brandId": "brand_1",
"description": "Modern Menswear",
"name": "Acme"
}'
Request Collapse all
Base URL
https://sight.inspectorio.com
Auth
Body
{
  "brandId": "brand_1",
  "description": "Modern Menswear",
  "name": "Acme"
}
ResponseClear

Click the Send API Request button above and see the response here!