| Field | Required | Description |
|---|---|---|
| api-token | Yes | Authentication token provided by VasyERP |
| Field | Description |
|---|---|
| subBrandId | Unique identifier of the sub-brand |
| subBrandName | Name of the sub-brand |
| parentId | Parent brand identifier |
curl --location '/api/v1/subbrand?brandId=654528' \
--header 'api-token: {{.in-api-token}}'{
"status": true,
"message": "Sub Brand List",
"code": "200",
"response": {
"totalCount": 1,
"items": [
{
"subBrandId": 655119,
"subBrandName": "QA",
"parentBrandId": 654528
}
]
}
}