GET objects/{id}/object-ontologies?rpp={rpp}&page={page}
Gets the relations between an ontology item 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
GenericPaginatedListViewModelOfObjectOntologyItemViewModelName | Description | Type | Additional information |
---|---|---|---|
TotalCount | integer |
None. |
|
Pagination | PaginationParameterModel |
None. |
|
Items | Collection of ObjectOntologyItemViewModel |
None. |
|
NextPageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "totalCount": 1, "pagination": null, "items": [ { "id": "sample string 1", "position": 2, "type": 3, "object": { "selfUrl": "sample string 1" }, "ontologyItem": { "selfUrl": "sample string 1" }, "selfUrl": "sample string 4" }, { "id": "sample string 1", "position": 2, "type": 3, "object": { "selfUrl": "sample string 1" }, "ontologyItem": { "selfUrl": "sample string 1" }, "selfUrl": "sample string 4" } ], "nextPageUrl": "sample string 2" }