Get Related Records From a Multiple Relationship
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_role/39b59cc4-692c-4e65-be55-6ac96ae7d2f7/io_users
Response Example
The response is a JSON array that represents the related records. Following is an example Status Code 200 response for the User object:
[{
"__object_identifier": "io_user",
"io_updated_by": "764f0869-8b2a-4e43-8f23-88f593863eff"
"io_active": false
"io_tags": null
"io_description": null
"io_last_name": "Boulay"
"io_username": "boulay"
"io_overrides": null
"io_first_name": "Shirley"
"io_deleted": false
"io_private": false
"io_full_name": "Shirley Boulay"
"io_last_login_on": "2013-10-31T13:00:00.000-03:00"
"io_platform_changes_permitted": null
"io_created_on": "2012-06-28T01:48:55.187-03:00"....
}, {
"__object_identifier": "io_user",
"io_updated_by": "764f0869-8b2a-4e43-8f23-88f593863eff"
"io_active": false
"io_tags": null
"io_description": null
"io_last_name": "Hou"
"io_username": "vincent"
"io_overrides": null
"io_first_name": "Vincent"
"io_deleted": false
"io_private": false
"io_full_name": "Vincent Hou"
"io_last_login_on": "2013-10-28T21:47:00.000-03:00", ...,{},....
]
* 
The __object_identifier key field indicates the full identifier of the object to which the related record belongs.
For more information:
Was this helpful?