# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/BOM/Views
?config_id=111
To get BOM views you need to make a GET call to the following url :
http://localhost:8888/api/BOM/Views
Result example :
[
{
"view_id": 0,
"view_name": "string",
"is_default": true
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| config_id | query | long | Configuration Id. You can get from another method (http://localhost:8888/api/BOM/Variants). |
| Authorization | header | string | Add Authorization header token |