Service Board > Max for Developers > Appendix B: Max REST API > REST API Version 2 > Read Object Records by UUID (Extended Version)
Read Object Records by UUID (Extended Version)
Method
POST
URL
/v2/<object_full_identifier>/<record_uuid>/extended_read
Parameters
fields, incomingRelationships, data_format, ignore_delete, suppress_ror
Response Content Type
application/json
* 
This is an extended version of the Read Records of Specified Object method. In cases where parameter values are too complex to include in URLs, you can use this POST method with JSON code in the request body where each field represents a parameter. You can set parameters in both the URL and request body, as long as the same parameters are not used in both locations. This topic documents only the added functionality.
Parameter
Description
Data Type
Example
incomingRelationships
Incoming relationships of the object to use to retrieve related records.
Related records can be configured with the following parameters:
fields
filter
sort
limit
offset
JSON
Retrieve a single Showcase record and the first two related Showcase Details records when sorted by name in ascending order:
{
"incomingRelationships": {
"io_showcase_detail_showcase": {
"sort": "io_name asc",
"limit": 2
}
}
}
Was this helpful?