This page was last edited on October 31, 2023, at 13:31.
Comments or questions about this documentation? Contact us for support!
This is part of the API Basics section of the Web Services API.
Web Services includes a feature called subresources, which allows reading the subresources of an object.
For example, if we have a user object which has one or more skills and one or more devices associated twith it, and we want to read all of those in one request we need to do the following:
GET .../api/v2/users/<user_id>?subresources=*
{ "id":<user_id>, "firstName":<first_name>, ... "skills":[{ "id":<skill_1_id>, ... }, ... { "id":<skill_N_id>, ... }], "devices":[{ "id":<device_1_id>, ... }, ... { "id":<device_M_id>, ... }] }
If the subresources parameter is not included in the request, you receive everything except the "skills" collection and "devices" collection.
In the example above, we specify subresources=* to get all available subresources.
If the object we are interested in has several types of subresources, we can choose which subresources to be returned. This could be achieved by specifying a comma-separated list of subresources.
GET .../api/v2/users/<user_id>?subresources=skills,devices
{ "id":<user_id>, "firstName":<first_name>, ... "skills":[{ "id":<skill_1_id>, ... }, ... { "id":<skill_N_id>, ... }], "devices":[{ "id":<device_1_id>, ... }, ... { "id":<device_M_id>, ... }] }
GET .../api/v2/users/<user_id>?subresources=skills
{ "id":<user_id>, "firstName":<first_name>, ... "skills":[{ "id":<skill_1_id>, ... }, ... { "id":<skill_N_id>, ... }] }
If an object has subresources, it is possible to filter and sort by their properties. For example: show all users with skill "Sales". This could be achieved by using subresource name (for example "skills") followed by a dot and its property (for example ".name").
GET .../api/v2/users?subresources=skills&fields=id,userName&skills.name=Sales
{ "statusCode": 0, "users": [{ "id": "3454353254324", "userName": "cmburns@springfieldnclear.com", "skills":[{ "id": "0890689", "name": "Sales", "level": 2 } }, { "id": "3567365736736", "userName": "hsimpson@springfieldnclear.com, "skills":[{ "id": "0890689", "name": "Sales", "level": 4 } }] }
GET .../api/v2/users?subresources=skills&fields=id,userName&sortBy=skills.level&order=Descending
{ "statusCode": 0, "users": [{ "id": "3567365736736", "userName": "hsimpson@springfieldnclear.com, "skills":[{ "id": "0890689", "name": "Sales", "level": 4 } }, { "id": "3454353254324", "userName": "cmburns@springfieldnclear.com", "skills":[{ "id": "0890689", "name": "Sales", "level": 2 } }] }