v1

latestOpenAPI 3.0.32026-07-14101033.6 KB
Sets

Get all analysis sets or selection lists

Use this API operation to get a list of (all) analysis sets or selection lists.

get/getAllSets

Query parameters

groupsstring

The id(s) or the name(s) of the group(s) to retrieve.

When only numbers are used for ids (e.g. 1,3), the groups with these ids are retrieved.

On the other hand, when text is used (e.g. G1,G3), the groups whose name contains that text will be retrieved.

when a mix is used (e.g. G1,3), the groups with name "G1" or "3" are retrieved.

If the Selection lists (case-insensitive) value is passed, all selection lists are retrieved.

namesstring

The name(s) of the analysis set(s) or selection list(s) to retrieve

Response

The output will be a JSON-encoded array. Each array element contains a JSON object.

idinteger

Id

namestring

The name value will be the name of the retrieved analysis set or selection list

groupIdinteger nullable

The groupId value will be the id of the corresponding group. null for selection lists

groupNamestring

The groupName value will be the name of the corresponding group. Selection lists for selection lists

topLevelMenustring

The topLevelMenu value will be the top level menu value.

Example response

[
  {
    "id": 1,
    "name": "Analysis Set 1",
    "groupId": 1,
    "groupName": "Analysis Set Group 1",
    "topLevelMenu": "Top Level Menu"
  }
]