Create brands
This endpoint is deprecated.
POST
/api/RPC.common.Api.Brands.set?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
coderequired | String | Brand ID |
namerequired | String | Brand 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