# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/ObjectRecordValues
?object_id=111&record_id=111111
To get the object record values, you need to make a GET call to the following
url :
http://localhost:8888/api/Objects/ObjectRecordValues
Result example :
{
"records": [
{
"object_id": 0,
"record_id": 0,
"object_type": 0,
"record_guid": "string",
"record_fields": [
{
"system_name": "string",
"system_description": "string",
"value": {}
}
]
}
],
"pager": {
"HasNext": true,
"HasPrevious": true,
"CurrentPage": 0,
"PageSize": 0,
"TotalPages": 0,
"TotalCount": 0
}
}
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| object_id | query | long | Object Id. |
| record_id | query | boolean | Record Id. You can get from another method (http://localhost:8888/api/Objects/ObjectRecords). |
| Authorization | header | string | Add Authorization header token |