GET objects/{id}/object-links?rpp={rpp}&page={page}
Gets the relations between another object and the specified object.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The identifier of the object. |
integer |
Required |
| rpp |
Results per page. |
integer |
Default value is 0 |
| page |
Current page number. |
integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
GenericPaginatedListViewModelOfObjectLinkViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalCount | integer |
None. |
|
| Pagination | PaginationParameterModel |
None. |
|
| Items | Collection of ObjectLinkViewModel |
None. |
|
| NextPageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"totalCount": 1,
"pagination": null,
"items": [
{
"id": "sample string 1",
"description": "sample string 2",
"object1": {
"selfUrl": "sample string 1"
},
"object2": {
"selfUrl": "sample string 1"
},
"selfUrl": "sample string 3"
},
{
"id": "sample string 1",
"description": "sample string 2",
"object1": {
"selfUrl": "sample string 1"
},
"object2": {
"selfUrl": "sample string 1"
},
"selfUrl": "sample string 3"
}
],
"nextPageUrl": "sample string 2"
}