URLs Represent Resources

A REST API makes resources available at specific URLs. You can find a list of all thin clients in the UMS REST API at:

  • https://[server]:8443/umsapi/v3/thinclients

In a shorter notation, which assumes the base URL to be known:

  • /v3/thinclients

In order to address an individual instance of a resource - a thin client,for example - you specify its ID in the URL:

  • /v3/thinclients/8


Further Examples of Resources

URL

Resource

/v3/directories/tcdirectories

A list of all thin client directories

/v3/directories/tcdirectories/123

The thin client directory with the ID 123

/v3/firmwares

A list of all firmwares in the UMS instance

/v3/firmwares/7

The firmware with the ID 7

Find a list of all available resources in the IMI API Reference.