# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/BOM/Configurations
?object_id=111&record_guid=697dasdc6a-1a5b-4901-8738-eads3f951b414
To get BOM configurations you need to make a GET call to the following url
:
http://localhost:8888/api/BOM/Configurations
Result example :
[
{
"configuration_name": "string",
"record_guid": "string"
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| record_guid | query | string | Record Guid. |
| Authorization | header | string | Add Authorization header token |