GET   scenarios/desktopapp/{scenario_id}?include_associated_check_ids={include_associated_check_ids}

Gets info about a Dektop App check scenario.

URL Parameters

NameDescription
scenario_id

Dektop App check scenario identifier. Type: numeric.

include_associated_check_ids

(Optional) Indicates whether identifiers of the associated checks should be included in the response. By default, they are not included and the corresponding property of the response is null. Type: boolean. Example: true. Default value: false.

Request example

Response body model example and description

Desktop App scenario info

{
  "id": 1,
  "guid": "5a298802-242b-42d5-bb04-81caa6ee3cfe",
  "name": "sample string 3",
  "description": "sample string 4",
  "created_utc": "2024-09-27T22:23:16",
  "updated_utc": "2024-09-27T22:23:16",
  "associated_check_ids": [
    1,
    2,
    3
  ]
}
NameType Description
idInteger

The scenario's numeric identifier.

guidGuid

The scenario's GUID.

nameString

The scenario name.

descriptionString

The scenario description.

created_utcDateTime

The time at which the scenario was created.

updated_utcDateTime

The last time at which the scenario was updated.

associated_check_idsArray

The list of identifiers of the checks which are associated with the scenario.