Introduction
BMC Helix supports REST APIs with Custom JWT authentication. Integration between BMC Helix and OpsRamp requires configuring an outbound connection to create or update incidents in BMC Helix.
Unlike out-of-the-box integrations, BMC Helix integration must be configured under Custom Ticketing Integration in OpsRamp.
Install the BMC Helix
- From All Clients, select a client.
- Go to Setup > Account.
- Select the Integrations and Apps tab.
- The Installed Integrations page, where all the installed applications are displayed. Note: If no integrations are installed, it navigates to the Available Integrations and Apps page.
- Click + ADD on the Installed Integrations page. The Available Integrations and Apps page appears.It displays all the available applications along with the newly created application with the version.
- Search for Custom Ticketing integration using the search option.
Note: Alternatively, you can use the All Categories option to search. - Click ADD on the Custom Ticketing integration tile.
Configure the BMC Helix
Follow these steps to configure the outbound integration with BMC Helix:
- Provide the name of the integration.
- Select Outbound as the direction.
- Under the Outbound card, click Add in the Configuration menu.
- Fill in the configuration page with the following details:
Field Name | Description | Field Type |
---|---|---|
Base URI | Provide the base URI as specified by the customer. | String |
Notification Type | REST API | Dropdown |
Authentication Type | Custom | Dropdown |
Token URL | Specify the token URL as provided by the customer. | String |
Token Payload (optional) | Provide the JSON request payload for triggering the token URL, if required. | String |
Token Headers |
| String |
Tokens Path |
| String |
Resource Authorization Headers |
| |
Custom Parameters |
| String |
Tokens Path Mapping Configuration
The Tokens Path allows us to map fields from the response payload of the given Token URL to the corresponding tokens.
Sample Tokens Path Mapping
Response Payload of Token URL:
{
"token": "213990cdnqal21p2ncxmq12oedssw21d"
}
jwtToken = $token
Append the $ symbol to the value of the token field.
Actions on Integration
You can perform actions on an integration.
- See here for more information.
Actions on Event
Follow these steps to perform actions on the events:
Click on the integration name.
Navigate to Outbound tab > Events section.
Hover over the event name.
Click the actions (three dots) menu. A popup appears with options.
- Copy Id: To copy an event Id.
- Edit: To edit event details.
- Save as: To save an event name.
- Validate: Validate if the event is successful.
- Select Json or Form.
- Json: Enter the payload and click on Validate.
- Form: Enter the property and value in the fields and click on Validate.
A green tick appears if the event is successful
- Json: Enter the payload and click on Validate.
- Select Json or Form.
- Remove: To remove an event.
Integration response mapping configuration
Response mapping configuration is mainly based on the response payload that is received in third party payload; below are a few examples for response mapping configuration:
- sample response payload to mapping the id in response mapping:
{ "id":"INC0001", "type":"incident", "tool":"servicedesk" }
external ticket id = $id
We need to append $ to the value - sample response payload to mapping the id in response mapping:
{ "result":{ "id":"INC0001", "type":"incident", "tool":"servicedesk" } }
external ticket id = $result.id
- Sample response payload to mapping the id in response mapping
{ "result":[ { "ticketDetails":{ "id":"INC0001", "type":"incident", "tool":"servicedesk" }, "Description":{ "display_value":"testing description", "value":"validating" } } ] }
external ticket id = $result[0].ticketDetails.id
- sample response payload to mapping the Incident Number in response mapping
{ "result": { "Incident Number": "INC0001", "type": "Incident" } }
external ticket id = $result[‘Incident Number’]
Audit Logs
View logs from the Audit Logs tab. You can view if the event was successful or not.
Integration event payloads
The following are the field and example payload to create incidents.
Create incident
Field | Value |
---|---|
Endpoint URL | https://{subdomain}.com/arsys/services/ARService?server=onbmc-s&webService=OpsRamp_CreateIncident |
Headers |
|
Method | POST |
Authentication type | BASIC |
Username | BMC Helix username |
Password | BMC Helix password |
Request with OpsRamp tokens
The following is a sample request with OpsRamp tokens.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:OpsRamp_CreateIncident">
<soapenv:Body>
<urn:Create_OpsRampIncidentNew>
<!--Optional:-->
<urn:Incident_Number></urn:Incident_Number>
<urn:Summary>$incident.subject</urn:Summary>
<urn:Notes>$incident.impact</urn:Notes>
<urn:Priority>[@$incident.priority.name@]</urn:Priority>
<urn:Vendor_Ticket_Number>$incident.uniqueId</urn:Vendor_Ticket_Number>
<urn:OpsRamp_Status>[@$incident.status.name@]</urn:OpsRamp_Status>
<urn:Source_Type>Inbound</urn:Source_Type>
</urn:Create_OpsRampIncidentNew>
</soapenv:Body>
</soapenv:Envelope>
Response
The following is a sample response.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns0:Create_OpsRampIncidentNewResponse xmlns:ns0="urn:OpsRamp_CreateIncident">
<ns0:Incident_Number>INC000003142691</ns0:Incident_Number>
<ns0:OpsRamp_Status>Open</ns0:OpsRamp_Status>
</ns0:Create_OpsRampIncidentNewResponse>
</soapenv:Body>
</soapenv:Envelope>
Use tag: $Body.createResponse.createResult.EntityResults.Entity.TicketNumber
to
read the BMC Helix ticket ID and save it to the external entity ID of the OpsRamp incident.
Authentication error message
The following is a possible error message for an authentication error:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server.userException</faultcode>
<faultstring>ARERR [623] Authentication failed</faultstring>
<detail>
<ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">dv-mt-01</ns1:hostname>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Required field error message
The following is a possible error message for a required field error:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<soapenv:Fault>
<faultcode>soapenv:Server.userException</faultcode>
<faultstring>ERROR (326): Required field cannot be blank.; 536870914</faultstring>
<detail>
<ns1:hostname xmlns:ns1="http://xml.apache.org/axis/">dv-mt-01</ns1:hostname>
</detail>
</soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>
Failures
In the case of failure in integration, an Email is sent to the user about the failure in integration.
To configure failure notification:
1. Click add from the Failures section.
1. Select notification type as Email.
1. Enter the email address(es) in the To and CC fields
1. Click Add Failure Notifications. The details are added.
1. Click Finish. The integration is installed.