# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/BOM/Variants
?object_id=180
To get BOM variants you need to make a GET call to the following url :
http://localhost:8888/api/BOM/Variants
Result example :
[
{
"config_id": "string",
"config_label": "string",
"config_system_name": "string",
"is_enabled": true,
"is_default": true,
"list_order": 0
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| Authorization | header | string | Add Authorization header token |