Event Code 115 - FTM Alert Creation

Use the Event Code 115 webhook to receive notifications when a new alert is created in Fraud Transaction Monitoring (FTM).

📘

Note

To use this event code, you must be onboarded for Fraud Transaction Monitoring and have valid fraud rules set up. For more information, speak to your Account Manager.

Event code 115 is generated when a new alert is created in Fraud Transaction Monitoring (FTM).

{
  "productId": 12345,
  "events": [115],
  "webhookStatus": "active",
  "config": {
    "url": "https://client_domain.com/webhook",
    "customHeaders": {
      "header1": "value_1",
      "header2": "value_2"
    }
  }
}

After the webhook has been successfully set up, when an alert is created in FTM, the Event Delivery Service sends a notification asynchronously to the URL specified in the webhook.

The following example shows an Event 115 notification response:

{
  "context": {
    "notificationId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "eventCode": 115,
    "eventVersion": "v1",
    "notificationTime": "2025-10-29T23:20:28Z"
  },
  "payload": {
    "alertTime": "2025-10-29T15:00:00Z",
    "eventTime": "2025-10-29T14:59:30Z",
    "alertId": "1814885-SleFPH53",
    "eventId": "46d99b92-0d4d-48a4-97a4-eba49b94c9f1",
    "eventType": "cardRT",
    "systemEventId": "1814885-SleFPH53",
    "threddTransactionId": "6167181535",
    "customerId": "TRD-1",
    "cardId": "3181200146334628",
    "productId": "10030",
    "programManagerCode": [
      "TRD"
    ],
    "tenantId": [
      "TRD"
    ],
    "actionTags": [
      {
        "tag": "Action",
        "values": [
          "Decline"
        ]
      }
    ],
    "triggeredRules": [
      "AlertingRule",
      "AlertingRule_2"
    ],
    "triggeringEntities": [
      "3181200136754628",
      "TRD-1"
    ]
  }
}
📘

Note

For an approved outcome, actionTags can be null.

The following table describes the fields included in the notification response.

FieldDescription
contextObject containing contextual information about the notification, such as the event code.
notificationIdUnique identifier for the notification.
eventCodeEvent code for the notification. For this event, the value is 115.
eventVersionVersion of the event.
notificationTimeDate and time when the notification was created, in UTC using the yyyy-MM-ddTHH:mm:ssZ format.
payloadObject containing the notification payload specific to the event code.
alertTimeDate and time when the alert was generated. Can be null if not applicable.
eventTimeDate and time when the event that triggered the alert occurred.
alertIdUnique identifier for the alert.
eventIdUnique identifier for the event.
eventTypeType of event that triggered the alert.
systemEventIdFTM-generated identifier for the event.
threddTransactionIdIdentifier for the Thredd transaction associated with the event.
customerIdIdentifier for the customer associated with the event.
cardIdIdentifier for the card associated with the event.
productIdIdentifier for the product associated with the card or transaction.
programManagerCodeArray of programme manager codes associated with the event.
tenantIdArray of tenant identifiers associated with the event.
actionTagsArray containing actions and metadata aggregated from the entities associated with the alert.
tagName of the tag, indicating the type of action or metadata.
valuesArray of values associated with the tag.
triggeredRulesArray of rules triggered by the event.
triggeringEntitiesArray of entities that triggered the alert.

Did this page help you?