Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagesh
curl -X GET http://localhost/enapso-dev/view-management/v1/editorialObject

...

Passing Limit and Offset Parameters

To retrieve information about EditorialObject instances with limit and offset parameters, The limit parameter specifies the maximum number of results to return, while the offset parameter specifies the starting point in the list of results, effectively skipping the first offset number of results. you can use the following curl command:

Code Block
curl --get "http://localhost/enapso-dev/view-management/v1/editorialObject?limit=10&offset=10"

Passing Filters

You can pass filters using the filter.propertyName=value format in the query parameters. For example, if the property IRI is http://www.ebu.ch/metadata/ontologies/ebucoreplus#title, you will use the property name title after the hash.

...