Create brands

This endpoint is deprecated.
POST/api/RPC.common.Api.Brands.set?token=<TOKEN>

Key Brands.set · API version 2.0.0

Parameters

2 body parameters inside data[]
FieldTypeDescription
coderequiredStringBrand ID
namerequiredStringBrand name

Request example

Create Brand:
{
   "data" : [
      {
         "code" : "GRD",
         "name" : "Grundig"
      }
   ]
}

cURL

Create Brand:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "code" : "GRD",         "name" : "Grundig"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Brands.set?token=<TOKEN>"

Response example