Skip to main contentIBM Maximo REST API Guide

Selecting Distinct Data

Selecting distinct data is done by replacing the oslc.select clause in a collection URL with query parameter distinct=<attribute name>. The following example:

GET /os/mxapiasset?distinct=siteid&oslc.where=...

Will respond with an JSON array of sites that match the said where clause.

[
"BEDFORD",
"NASHUA"
]