Receive Fraud Decision Status

Once a transaction is successfully sent in, payment providers have two options to receive the Fraud Decision back.

Webhook

The Abrigo Fraud Detection will automatically send your Payment Provider system status updates on a given transaction to let the system no whether the Transaction has a Message Status of GO, HOLD, RELEASE or BLOCK.

To set up a webhook, your payment provider will provide the Abrigo Third Party integration team a URL, so that the Abrigo Fraud Solution knows where to send the payment message updates.

Once setup, the Payment Provider will receive updates on the Transaction status automatically.

{
  "webhookId": "738dcd4b-ace6-43a1-bd8c-4595522dbcf3",
  "webhookRequestId": "22b3287a-cf1a-4fb9-8213-cdbf9cacf0af",
  "eventType": "FraudDecisionAcknowledgementResponse",
  "payload": "{\"TransactionId\":\"738dcd4b-ace6-43a1-bd8c-4595522dbcf3\",\"Message\":\"Transaction accepted for processing\",\"AcknowledgementType\":\"Accepted\",\"ClientTransactionId\":\"123\"}"
}

GET API call

In addition to the webhooks, payment providers will also have access to a standalone API call to retrieve the message status on demand.

Make a GET API call to https://fraudapi.abrigo.com/v1/fraud-decision/status/[transactionID] (Production) or <https://uatfraudapi.abrigo.com/v1/fraud-decision/status/[transactionID] (UAT) and replace the [transactionID] with a valid id to retrieve that payment transaction's status.

The response will look like this:

{
    "TransactionId": "b34b861e-bb28-47c9-82a7-51df977791bf",
    "Message": "Transaction is processing...",
    "AcknowledgementType": "Processing",
    "ClientTransactionId": "123"
}