Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


HTML
<style>
.release-box {
	height: 30px; 
	width: 100px; 
	padding-top: 8px;
	text-align: center; 
	border-radius: 5px; 
	font-weight: bold; 
	background-color: #8efeb3;  
	border-color: #FCE28A;
}

.release-box:hover {
  	cursor: hand;
    cursor: pointer;
    opacity: .9; 
}
</style>
<meta name="robots" content="noindex">

<div class="release-box">
<a href="https://docs.perspectium.com/display/krypton" style="text-decoration: none; color: #FFFFFF; display: block;">
Krypton
</a>
</div>



To correlate your Zendesk tickets with another ITSM app, you will need to create a Correlation ID field. This Correlation ID field will be populated with the corresponding ticket's unique identifier from the other ITSM app (such as the ServiceNow sys_id) being integrated.

(info) NOTE: Only a Correlation ID field is required. You can also create a Correlation Display field if you want a field to contain a customer-facing identifier field from the other ITSM app, such as the ServiceNow number field on incidents.


Procedure

To create custom fields in Zendesk, follow these steps:


UI Steps


UI Step


The field should be created as a Text field type and can have any display name and properties as desired.


Once you have created the field(s), note each field's Field ID as you will need those for configuring the meshlet.

This field ID will also be used in the Zendesk meshlet's mapping files for mapping records created/updated in the other ITSM app into the Common Incident format for mapping into Zendesk. For example, if you are mapping how to create tickets in Zendesk from ServiceNow, the mapping would look as follows:

Code Block
languagexml
{
  "ticket": {
     "comment": {
      "body": "${JSON_ENCODE:$[XPATH:/common_incident/description]}"
    },
    "type": "ticket",
    "priority": "${XPATH:/common_incident/priority}",
    "status": "${XPATH:/common_incident/state}",
    "subject": "${JSON_ENCODE:$[XPATH:/common_incident/short_description]}",
    "custom_fields": [{"id": 7655609750043, "value": "${XPATH:/common_incident/sys_id}"}]
  }
}

You will notice the custom_fields section where the Correlation ID's field ID (7655609750043) is listed so it knows to update this field with the sys_id from ServiceNow.

(info) NOTE: You may need to refresh your browser to see the new custom field on the ticket form in the Zendesk UI.