Versions Compared

Key

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

...

Code Block
languagesh
curl -X GET-get "http://localhost/enapso-dev/view-management/v1/editorialObject?"   --data-urlencode "filter.title=Das%20BootDas Boot" 

...

2. Filtering by a Property with a Full IRI (Child to Parent)

...

Code Block
languagesh
curl -X-get GET "http://localhost/enapso-dev/view-management/v1/editorialObject?"    --data-urlencode "filter.%3Chttp%3A%2F%2Fwww.ebu.ch%2Fmetadata%2Fontologies%2Febucoreplus%23hasRelatedEditorialObject%3E=http%3A%2F%2Fwwwhttp://www.ebu.ch%2Fmetadata%2Fontologies%2Febucoreplus%2Fdata%2FAssetch/metadata/ontologies/ebucoreplus/data/Asset_37f6d90c-87c9-4c1f-9a46-ff1102f9bd8a"

...

  • Encoding URIs: When passing any valueproperty IRI, ensure it is URL-encoded.

...

Code Block
languagebash
curl -X GET-get "http://localhost/enapso-dev/view-management/v1/editorialObject?"   --data-urlencode "filter.title=Run Lola Run"    --data-urlencode "filter.%3Chttp%3A%2F%2Fwww.ebu.ch%2Fmetadata%2Fontologies%2Febucoreplus%23hasRelatedEditorialObject%3E=http%3A%2F%2Fwwwhttp://www.ebu.ch%2Fmetadata%2Fontologies%2Febucoreplus%2Fdata%2FAssetch/metadata/ontologies/ebucoreplus/data/Asset_37f6d90c-87c9-4c1f-9a46-ff1102f9bd8a&filter.title=Run%20Lola%20Run"

...

Screenshot 2024-05-16 134257.pngImage Added

3. Update (PUT)

...