Endpoint
/api/v2/tenants/{tenantId}/incidents/urgencies
Gets incident urgencies list.
Path Parameters
tenantIdstring
Responses
OK
[
{
"description": "High level of impact",
"id": 1,
"name": "Level 1",
"uniqueId": "SURG-67154b42-0437-47a7-8fa0-0a63144c7bdd"
},
{
"description": "Normal level of impact",
"id": 2,
"name": "Level 2",
"uniqueId": "SURG-77a42eb4-52d5-47c1-ab7f-2e084eaac23d"
},
{
"description": "Low level of impact",
"id": 3,
"name": "Level 3",
"uniqueId": "SURG-59b56741-21f8-4854-9306-b64d3cf93deb"
}
]
Endpoint
/api/v2/tenants/{tenantId}/incidents/urgencies
Creates incident urgency.
Path Parameters
tenantIdstring
descriptionstring
(Optional) Short summary describing the urgency.
namestring
Urgency name.
{
"description": "Servers in site SJ are down. Need to resolve the issue immediately.",
"name": "SJ Server Down-Critical"
}
Responses
OK
createdByobject
Child Parameters
- createdBy.email
- createdBy.firstName
- createdBy.id
- createdBy.lastName
- createdBy.loginName
- createdBy.phoneNumber
createdDatestring
descriptionstring
idinteger
namestring
uniqueIdstring
updatedByobject
Child Parameters
- updatedBy.email
- updatedBy.firstName
- updatedBy.id
- updatedBy.lastName
- updatedBy.loginName
- updatedBy.phoneNumber
updatedDatestring
{
"createdBy": {
"email": "john.smith@myorganization.com",
"firstName": "John",
"lastName": "Smith",
"loginName": "John.Smith"
},
"createdDate": "2017-12-14T08:53:32+0000",
"description": "Servers in site SJ are down. Need to resolve the issue immediately.",
"name": "SJ Site Server Down-Critical",
"uniqueId": "SURG-47b0fa08-8639-41e7-9c86-175c947ae782",
"updatedBy": {
"email": "john.smith@myorganization.com",
"firstName": "John",
"lastName": "Smith",
"loginName": "John.Smith"
},
"updatedDate": "2017-12-14T08:53:32+0000"
}