Service Board > Max for Developers > Appendix B: Max REST API > REST API Version 2: Multiple Relationships > Get Related Records From Dynamic Multiple Relationships
Get Related Records From Dynamic Multiple Relationships
Method
GET
URL
/v2/<object_full_identifier>/<record_uuid>/<multiple_relationship_full_identifier>
Parameters
Response Content Type
application/json
Input Example
The input should be a GET request with the following URL:
GET https://localhost:8080/v2/io_field/eca64d35-2338-4445-b87d-07597bcf4bbb/io_field_access_control
Response Example
The response is a JSON array that represents the related records. Following is an example Status Code 200 response for a Field object:
[{
"__object_identifier": "io_user",
"io_updated_by": "764f0869-8b2a-4e43-8f23-88f593863eff",
"io_active": true,
"io_tags": null,
"io_description": null,
"io_last_name": "Kong",
"io_username": "robert.kong",
"io_overrides": null
....
},
{
"__object_identifier": "io_group",
"io_updated_by": "764f0869-8b2a-4e43-8f23-88f593863eff",
"io_related_to": null,
"io_active": true,
"io_tags": null,
"io_description": null,
"io_overrides": null,
"io_auto_generated": false,
"io_deleted": false,
"io_private": false,
"io_notes": null, ...},{},....
]
* 
The __object_identifier key field specifies the full identifier of the object to which the related record belongs.
For more information:
Was this helpful?