GET ontologies/{type}?rpp={rpp}&page={page}

Gets a list of ontology items of the specified ontology. [OData]

Request Information

URI Parameters

NameDescriptionTypeAdditional information
type

The ontology type.

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
NameDescriptionTypeAdditional 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"
}