Event Code 115 - FTM Alert Creation
NoteTo 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.
The 115 event code is used 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, a notification response is sent asynchronously from the Event Delivery Service to the URL specified in the webhook. See the below example of a 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"
]
}
}The below table describes each of the fields included in the notification response.
| Field | Description |
|---|---|
| context | Object that contains the context of the notification, such as the event code. |
| notificationId | Unique identifier of the notification. |
| eventCode | The event code. In this case, the event code is 115. |
| eventVersion | The event version. |
| notificationTime | When the notification was created. Time in the UTC format of 'yyyy-MM-ddTHH:mm:ssZ'. |
| payload | Object that contains the payload of the notification, which is specific to the event code. |
| AlertTime | The time the alert was generated. This can be null if not applicable. |
| EventTime | The time the event occurred that triggered the alert. |
| AlertId | The unique identifier for the alert. |
| EventId | The unique identifier for the event. |
| EventType | The event type that triggered the alert. |
| SystemEventId | The FTM generated identifier for the event. |
| ThreddTransactionId | The identifier for the Thredd transaction associated with the event. |
| CustomerId | The identifier for the customer involved in the event. |
| CardId | The identifier for the card involved in the event. |
| ProductId | The identifier for the product associated with the card or transaction. |
| ProgramManagerCode | The list of program manager codes associated with the event. |
| TenantId | The list of tenant identifiers associated with the event. |
| ActionTags | Object that contains representing actions taken, aggregated from all entities. |
| Tag | The name of the tag, indicating the type of action or metadata. |
| Values | Array of values associated with the tag. |
| ActionTags | End of the ActionTags object. |
| TriggeredRules | The list of rules that were triggered by the event. |
| TriggeringEntities | The list of entities that triggered the alert. |
Updated 4 days ago
