URL

POST https://{api-url}/api/v2/tenants/{tenantId}/incidents/businessImpacts/{uniqueId}

Sample URLs

To create partner-level business impact:

https://{api-url}/api/v2/tenants/msp_3/incidents/businessImpacts/SIMPACT-2e70bb64-3a10-4236-ab01-c2a833df96d8

To create client-level business impact:

https://{api-url}/api/v2/tenants/client_4/incidents/businessImpacts/SIMPACT-2e70bb64-3a10-4236-ab01-c2a833df96d8

Parameters

Both parameters are optional:

FieldDescription
nameBusiness impact name.
descriptionShort summary describing the business impact.

Status code

200 OK

Sample request

{
	"name": "Network Servers Down",
	"description": "Network Server in CA Site down"
}

Sample response

{
	"uniqueId": "SIMPACT-2e70bb64-3a10-4236-ab01-c2a833df96d8",
	"name": "Network Servers Down",
	"description": "Network Server in CA down",
	"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:08:21+0000",
	"updatedDate": "2017-12-14T09:09:13+0000"
}