Authorization Events

Events related to authorizations/transactions


auth_created

Authorization or transaction presentment for a card.
Within our core, this event implies the creation of a pre_loan.

FieldDescription
open_to_buyCustomer’s available balance. Obtained from the balance model. Available = available − balance on hold.
amountAuthorization amount. The amount is expressed as a negative value, as it represents a debit.
account_card_external_idUnique identifier provided by the processor for the creation of the customer’s account.
card_external_idUnique identifier provided by the processor for the creation of the customer’s card.
external_idUnique authorization identifier provided by the processor.
descriptionAuthorization description provided by the processor.
mccMCC (Merchant Category Code) of the authorization provided by the processor.
event_idUnique identifier of the event.
timestampEvent date and time.
typeEvent type.
othersAdditional data in JSON format.
{
   "data":{
      " open_to_buy ":"3000",
      " amount":"-1000",
      "account_card_external_id":"1011",
      "card_external_id":"54332278",
      "external_id":"101",
      "description":"Merchant Transaction",
      "mcc":"2210",
      "others":{
         
      }
   },
   "event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
   "timestamp":"2025-01-31 17:20:33 MST",
   "type":"auth_created"
}

auth_rejected

A card authorization or transaction presentment has been rejected.

FieldDescription
open_to_buyCustomer’s available balance. Obtained from the balance model. Available = available − balance on hold.
amountTransaction amount. The amount is expressed as a positive value, as it represents a credit.
account_card_external_idUnique identifier provided by the processor for the creation of the customer’s account.
card_external_idUnique identifier provided by the processor for the creation of the customer’s card.
external_idUnique authorization identifier provided by the processor.
event_idUnique identifier of the event.
timestampEvent date and time.
typeEvent type.
{
   "data":{
      " open_to_buy ":"3000",
      " amount":"1000",
      "account_card_external_id":"1011",
      "card_external_id":"54332278",
      "external_id":"101"
   },
   "event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
   "timestamp":"2025-01-31 17:20:33 MST",
   "type":"auth_rejected"
}

auth_reversed

A card authorization or transaction presentment has been reversed.

FieldDescription
open_to_buyCustomer’s available balance. Obtained from the balance model. Available = available − balance on hold.
amountAmount to be reversed. The amount is expressed as a positive value, as it represents a credit.
account_card_external_idUnique identifier provided by the processor for the creation of the customer’s account.
card_external_idUnique identifier provided by the processor for the creation of the customer’s card.
external_idUnique authorization identifier provided by the processor.
event_idUnique identifier of the event.
timestampEvent date and time.
typeEvent type.
{
   "data":{
      " open_to_buy ":"3000",
      " amount":"1000",
      "account_card_external_id":"1011",
      "card_external_id":"54332278",
      "external_id":"101"
   },
   "event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
   "timestamp":"2025-01-31 17:20:33 MST",
   "type":"auth_rejected"
}

denied_auth

A card authorization or transaction presentment has been denied.

FieldDescription
open_to_buyCustomer’s available balance. Obtained from the balance model. Available = available − balance on hold.
amountAuthorization amount. The amount is expressed as a negative value, as it represents a debit.
account_card_external_idUnique identifier provided by the processor for the creation of the customer’s account.
card_external_idUnique identifier provided by the processor for the creation of the customer’s card.
external_idUnique authorization identifier provided by the processor.
descriptionAuthorization description provided by the processor.
mccMCC (Merchant Category Code) of the authorization provided by the processor.
event_idUnique identifier of the event.
timestampEvent date and time.
typeEvent type.
{
   "data":{
      "open_to_buy":"3000",
      "amount":"-1000",
      "account_card_external_id":"1011",
      "card_external_id":"54332278",
      "external_id":"101",
      "description":"Merchant Transaction",
      "mcc":"2210"
   },
   "event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
   "timestamp":"2025-01-31 17:20:33 MST",
   "type":"denied_auth"
}