Get scenario tags by domain
get/domains/{domainId}/scenarioTags
Get scenario tags associated with the given domain using a standard filter.
1{2 "name": "scenarioTags",3 "start": 0,4 "count": 1,5 "links": [6 {7 "method": "GET",8 "rel": "collection",9 "href": "/svi-alert/scenarioTags",10 "uri": "/svi-alert/scenarioTags",11 "type": "application/vnd.sas.collection"12 },13 {14 "method": "GET",15 "rel": "self",16 "href": "/svi-alert/scenarioTags?sortBy=creationTimeStamp:descending&start=0&limit=10",17 "uri": "/svi-alert/scenarioTags?sortBy=creationTimeStamp:descending&start=0&limit=10",18 "type": "application/vnd.sas.collection"19 },20 {21 "method": "POST",22 "rel": "createScenarioTag",23 "href": "/svi-alert/scenarioTags",24 "uri": "/svi-alert/scenarioTags",25 "type": "application/vnd.sas.investigation.triage.scenario.tag",26 "responseType": "application/vnd.sas.investigation.triage.scenario.tag"27 }28 ],29 "items": [30 {31 "createdBy": "videmo",32 "creationTimeStamp": "2024-04-18T14:29:18.628Z",33 "domainId": "svidomain",34 "links": [35 {36 "method": "GET",37 "rel": "self",38 "href": "/svi-alert/scenarioTags/scenarioIdExample",39 "uri": "/svi-alert/scenarioTags/scenarioIdExample",40 "type": "application/vnd.sas.investigation.triage.scenario.tag"41 },42 {43 "method": "PUT",44 "rel": "update",45 "href": "/svi-alert/scenarioTags/scenarioIdExample",46 "uri": "/svi-alert/scenarioTags/scenarioIdExample",47 "type": "application/vnd.sas.investigation.triage.scenario.tag",48 "responseType": "application/vnd.sas.investigation.triage.scenario.tag"49 },50 {51 "method": "GET",52 "rel": "domain",53 "href": "/svi-alert/domains/svidomain",54 "uri": "/svi-alert/domains/svidomain",55 "type": "application/vnd.sas.investigation.triage.domain"56 }57 ],58 "modifiedBy": "videmo",59 "modifiedTimeStamp": "2024-04-18T14:29:18.628Z",60 "scenarioTagId": "scenarioIdExample",61 "scenarioTagName": "scenarioNameExample",62 "version": 163 }64 ],65 "limit": 10,66 "version": 267}
| Name | Type | Required | Description |
|---|---|---|---|
domainId | string | true | Specifies the identifier for the domain. <= 36 characters |
| Name | Type | Required | Description |
|---|---|---|---|
filter | string | false | The criteria for filtering the items. See Filtering in REST APIs. |
limit | integer<int32> | false | Specifies the maximum number of items to return. The default value is 10. >= 1 Default: 10 |
sortBy | string | false | The criteria for sorting the items. See Sorting in REST APIs. Default: creationTimeStamp:descending |
start | integer<int32> | false | Specifies the index of the first item to return. The default value is 0. >= 0 Default: 0 |
| Status | Meaning | Description | ||
|---|---|---|---|---|
| 200 | OK | The request succeeded. | Headers | Schema |
| 400 | Bad Request | The request was invalid. | Schema | |
| 404 | Not Found | No domain exists at the requested path. | Schema |