URL

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

Sample URLs

To create partner-level business impact:

https://{api-url}/api/v2/tenants/msp_3/incidents/businessImpacts

To create client-level business impact:

https://{api-url}/api/v2/tenants/client_4/incidents/businessImpacts

Business impact defines the impact an incident has on the process.

Parameters

FieldDescription
nameBusiness impact name.
description(Optional) Short summary describing the business impact.

Status code

200 OK

Sample request

{
	"name": "SJ Servers Down",
	"description": "Servers in site SJ are down"
}

Sample response

{
	"uniqueId": "SIMPACT-b5a182be-826c-4380-9575-ad02cf4f5836",
	"name": "SJ Server Down",
	"description": "Servers in SJ are down",
	"createdBy": {
		"loginName": "john.smith",
		"lastName": "Smith",
		"firstName": "John",
		"email": "john.smith@myorganization.com"
	},
	"updatedBy": {
		"loginName": "john.smith",
		"lastName": "Smith",
		"firstName": "John",
		"email": "john.smith@myorganization.com"
	},
	"createdDate": "2017-12-14T05:50:18+0000",
	"updatedDate": "2017-12-14T05:50:18+0000"
}