# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/BOM/Versions
?object_id=111&record_id=521591
To get a specific BOM version you need to make a GET call to the following url :
http://localhost:8888/api/BOM/Versions
Result example :
[
{
"version_index": 0,
"revision": "string"
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| record_id | query | long | Record Id. |
| Authorization | header | string | Add Authorization header token |