QRS API endpoints (subset)
You access the QRS API endpoints to perform create, read, update, and delete operations on entities. The properties within the entities correspond to the properties that are configurable in the QMC.
Example:
When communicating directly with the QRS API, the URL is as follows:
https://<QRS machine name>:4242/<path>
To call a path, replace <path> with a proper path, such as:
/qrs/[type]/count?filter={filter}
In this example, the Get count path is used.
In the path, replace [type] with a proper entity type:
/qrs/user/count?filter={filter}
In this example, the user entity type is used.
Optionally, filter the returned entities:
/qrs/user/count?filter=Name eq 'Joe Smith'
In this example, only users named “Joe Smith” are included.
This means that the URL becomes:
https://<QRS machine name>:4242/qrs/user/count?filter=Name eq 'Joe Smith'