When you configure service desk integration, by default several NIM fields are mapped to fields on your service desk solution. You can customize these field mappings, add extra mappings, and create custom field mappings. For example, you can create additional levels of severity or urgency.
Follow these steps:
You defined a new field mapping.
Note: To customize existing field mappings, first delete the mapping that you want to customize, and then re-add it in the same way that you define a new field mapping.
If your service desk solution contains custom fields that are not detected automatically by NIM, define custom field mappings.
Follow these steps:
You defined a custom field mapping.
Note: In a REST call, custom fields are used differently than the default CA NIM Fields. The following example shows how to use custom fields in a rest call:
XML Request body
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <incident> <description>test incident</description> <impact>high</impact> <label>label_change</label> <priority>critical</priority> <severity>high</severity> <status>new</status> <urgency>high</urgency> <customproperties> <property> <name>customField1</name> <value>10</value> </property> </customproperties> </incident>
JSON Request body
{ "description": "test incident", "category": "inquiry", "customproperties": { "property": [ { "name": "customField1", "value": "10" } ] }, "impact": "high", "label": "label_change", "priority": "critical", "severity": "high", "status": "new", "urgency": "high" }
Copyright © 2015 CA Technologies.
All rights reserved.
|
|