Events related to transactional processes, such as: payments, advances, charges, etc.
payment_created
A payment has been created for a customer’s account.
| Field | Description |
|---|---|
open_to_buy | Customer’s available balance. Obtained from the balance model. Available = available − balance on hold. |
amount | Payment amount. The amount is expressed as a positive value, as it represents a credit. |
account_card_external_id | Unique identifier provided by the processor for the creation of the customer’s account. |
external_id | Unique payment identifier provided by the partner. |
description | Payment description provided by the partner. |
event_id | Unique identifier of the event. |
timestamp | Event date and time. |
type | Event type. |
{
"data":{
"open_to_buy":"3000",
"amount":"1000",
"account_card_external_id":"1011",
"external_id":"101",
"description":"Lulo"
},
"event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
"timestamp":"2025-01-31 17:20:33 MST",
"type":"payment_created"
}advance_created
A credit has been granted to the customer’s account.
| Field | Description |
|---|---|
open_to_buy | Customer’s available balance. Obtained from the balance model. Available = available − balance on hold. |
amount | Credit amount. The amount is expressed as a positive value, as it represents a credit. |
account_card_external_id | Unique identifier provided by the processor for the creation of the customer’s account. |
external_id | Unique identifier of the created adjustment. |
event_id | Unique identifier of the event. |
timestamp | Event date and time. |
type | Event type. |
{
"data":{
"open_to_buy":"3000",
"amount":"1000",
"account_card_external_id":"1011",
"external_id":"101"
},
"event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
"timestamp":"2025-01-31 17:20:33 MST",
"type":"advance_created"
}charge_created
A charge has been created for the customer’s account.
This process is triggered when regular interest, late interest, or fees are generated.
| Field | Description |
|---|---|
open_to_buy | Customer’s available balance. Obtained from the balance model. Available = available − balance on hold. |
amount | Total charge amount. The amount may be expressed as a negative or positive value, depending on whether it is a debit or a credit. |
tax_amount | Tax amount applied to the charge. |
account_card_external_id | Unique identifier provided by the processor for the creation of the customer’s account. |
external_id | Unique identifier of the created charge. |
charge_type | Type of charge created. (interest, default_interest, fees, cost) |
event_id | Unique identifier of the event. |
timestamp | Event date and time. |
type | Event type. |
{
"data":{
"open_to_buy":"3000",
"amount":"1000",
"tax_amount":"16",
"account_card_external_id":"1011",
"external_id":"101",
"charge_type":"interest"
},
"event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
"timestamp":"2025-01-31 17:20:33 MST",
"type":"charge_created"
}dispute_created
A dispute has been created for a transaction on the customer’s account.
| Field | Description |
|---|---|
open_to_buy | Customer’s available balance. Obtained from the balance model. Available = available − balance on hold. |
amount | Disputed amount. |
account_card_external_id | Unique identifier provided by the processor for the creation of the customer’s account. |
external_id | Unique identifier of the disputed transaction. |
event_id | Unique identifier of the event. |
timestamp | Event date and time. |
type | Event type. |
{
"data":{
"open_to_buy":"3000",
"amount":"1000",
"account_card_external_id":"1011",
"external_id":"101"
},
"event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
"timestamp":"2025-01-31 17:20:33 MST",
"type":"dispute_created"
}dispute_processed
A dispute has been processed for a transaction on the customer’s account.
The event status indicates whether the dispute was accepted or rejected.
| Field | Description |
|---|---|
open_to_buy | Customer’s available balance. Obtained from the balance model. Available = available − balance on hold. |
amount | Disputed amount. |
account_card_external_id | Unique identifier provided by the processor for the creation of the customer’s account. |
external_id | Unique identifier of the disputed transaction. |
status | Dispute status. (pending, accepted, rejected, cancelled) |
event_id | Unique identifier of the event. |
timestamp | Event date and time. |
type | Event type. |
{
"data":{
"open_to_buy":"3000",
"amount":"1000",
"account_card_external_id":"1011",
"external_id":"101",
"status":"accepted"
},
"event_id":"5ecf55a5-1fca-4231-b171-cc72f7053228",
"timestamp":"2025-01-31 17:20:33 MST",
"type":"dispute_processed"
}