URL
POST https://{api-url}/api/v2/tenants/{tenantId}/incidents/urgencies/{uniqueId}
Sample URLs
To update a partner-level urgency:
https://{api-url}/api/v2/tenants/msp_3/incidents/urgencies
To update a client-level urgency:
https://{api-url}/api/v2/tenants/client_4/incidents/urgencies
Parameters
Both parameters are optional:
Field | Description |
---|---|
name | Urgency name. |
description | Short summary describing the urgency. |
Status code
200 OK
Sample request
{
"name" : "Network Servers Issue-High",
"description" : "High amount of traffic on network servers in site SJ"
}
Sample response
{
"uniqueId": "SURG-3e74aa61-0f7f-4bd0-978a-31c28580fc92",
"name": "Network Server Issue-High",
"description": "High traffic on network servers in site SJ",
"createdBy": {
"id": "USR0000000009",
"loginName": "John.Smith",
"lastName": "Smith",
"firstName": "John",
"email": "john.smith@myorganization.com",
"phoneNumber": ""
},
"updatedBy": {
"loginName": "John.Smith",
"lastName": "Smith",
"firstName": "John",
"email": "john.smith@myorganization.com"
},
"createdDate": "2017-12-14T09:12:01+0000",
"updatedDate": "2017-12-14T09:12:50+0000"
}