# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ReferenceRecords
?object_id=111&record_id=111111&folder_id=11111
To get the reference records, you need to make a GET call to the following url
:
http://localhost:8888/api/Objects/ReferenceRecords
Result example :
[
{
"part_number": "string",
"description": "string",
"group_name": "string",
"revision": "string",
"created_by": "string",
"created_date": "string",
"modified_by": "string",
"date_modified": "string",
"sub_object": "string",
"status": "string",
"location": "string",
"file_name": "string"
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| record_id | query | long | Record Id . |
| folder_id | query | integer | Folder Id. You can get from another method (http://localhost:8888/api/Objects/ReferenceFolder). |
| Authorization | header | string | Add Authorization header token |