# Transactions
# Transaction Created
| Payload | Type | Description |
|---|---|---|
| event | string | Name of the event that occurred (TransactionCreated) |
| number | integer | The n-th transaction have received eg 1 => 1st transaction |
| id_transaction | string | A unique identifier for each transaction |
| amount | integer | Cost of the transaction in cents |
| currency | string | Currency used to pay for the transaction. Denotes amount. |
| date | date | When the transaction occurred |
| status | string | Status of the transaction. Eg. "completed", "error", "refunded" |
# Transaction Updated
| Payload | Type | Description |
|---|---|---|
| event | string | Name of the event that occurred (TransactionUpdated) |
| number | integer | The n-th transaction have received eg 1 => 1st transaction |
| id_transaction | string | A unique identifier for each transaction |
| amount | integer | Cost of the transaction in cents |
| currency | string | Currency used to pay for the transaction. Denotes amount. |
| date | date | When the transaction was updated |
| status | string | Status of the transaction. Eg. "completed", "error", "refunded" |
← Tags