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