Creates an enterprise risk in the ERM solution.
URL
{RMUrl}/api/objects/ERMRisk
REQUEST METHOD
POST
URL PARAMETERS
This feature does not have parameters.
FORM CONTENT
Name (Required): Name of the enterprise risk to be created. Limit of 200 characters.
Description (Required): Description of the enterprise risk to be created. Limit of 1,000 characters.
Type (Required): Type of the enterprise risk to be created. Supports the following values: Credit Risk, Market Risk, and Operational Risk, as well as any custom types of risks.
Category (Required): Category of the risk to be created. Single selection list with the following values: Continuity, Data, External, Natural, Operational, Physical, Security, and Stakeholder.
RiskOwner (Required): Person responsible for the enterprise risk. Single-select Relationship attribute listing people from the organization.
InherentImpact (Required): Inherent impact of the enterprise risk to be created. Valid values: positive real numbers with a precision of 2 decimal places.
ResidualImpact (Optional): Residual impact of the enterprise risk to be created. Valid values: positive real numbers with a precision of 2 decimal places.
InherentProbability (Required): Inherent probability of the enterprise risk to be created. Valid values: positive real numbers with a precision of 2 decimal places.
ResidualProbability (Optional): Residual probability of the enterprise risk to be created. Valid values: positive real numbers with a precision of 2 decimal places.
Controls (Optional): List of enterprise controls associated with the enterprise risk to be created. Multi-select Relationship attribute listing enterprise controls .
REQUEST EXAMPLE
{RMUrl}/api/objects/ERMRisk
FORM CONTENT EXAMPLE
Create a new enterprise risk:
{
"Name":"Inefficiency of public safety",
"Category":"Security",
"Type":"Market Risk",
"Description":"Inefficient public safety force.",
"RiskOwner":{"Caption":"Joshua Smith"},
"InherentImpact":66.0,
"InherentProbability":55.0,
"ResidualImpact":6.0,
"ResidualProbability":5.0,
"Controls":[{"Caption":" Comply with the federal labor law "},{"Caption":" Audit the backup logs"}]
}
SUCCESS RESPONSE
Code of the newly created enterprise risk. Returns a byte.