Get integration event
This endpoint is used to retrieve the details of an integrated event.
URL
GET https://{api-url}/api/v2//tenants/{tenantId}/integrations/installed/{installedIntgId}/event/{eventId}
Sample URLs
https://{api-url}/api/v2/tenants/client_9/integrations/installed/INTG-24f0fabd-02df-4a83-a93a-f4155f58ddb8/event/INTG-EVENT-0e85ed91-35b7-4fe8-a702-45fab935961c
Sample response
{
"id" : "INTG-EVENT-0e85ed91-35b7-4fe8-a702-45fab935961c",
"name" : "Ticket create event",
"entity" : "INCIDENT",
"notifier" : {
"baseURI" : "https://urportal.com/create/tkt"
},
"headers" : [
{
"key" : "Accept",
"value" : "application/json"
},
{
"key" : "Content-Type",
"value" : "application/json"
}
],
"payload" : "{\n"subject":"$incident.subject",\n"description":"$incident.impact",\n"priority":"$incident.priority.name"\n}",
"responseHeaders" : [
{
"key" : "extTicketId",
"value" : "$id"
},
{
"key" : "Error Message",
"value" : "$err"
}
],
"depEvent" : {
"headers" : [
{
"key" : "Accept",
"value" : "application/json"
},
{
"key" : "Content-Type",
"value" : "application/json"
}
],
"payload" : "{\n"attach":"$attach.id"\n}",
"depEndPointURI" : "https://urportal.com/create/tkt/attachment",
"responseHeaders" : [
{
"key" : "id",
"value" : "$attch.id"
}
]
}
}