Transaction Items Object
Contains Items Records data.
Unique identifier for the transaction.
1234
UUID of the payment gateway.
Name of the payment gateway.
tilia
Sale price of the item.
Fee charged by the gateway.
Fee charged by the platform.
Currency code for the transaction.
usd
Number of tokens involved in the transaction.
ID of the token team.
Type of sale, e.g., bought or sold.
bought
Type of monetization, e.g., fiat.
fiat
Type of transaction, e.g., paid or cleared.
paid
Date and time of the purchase.
Creation timestamp with microseconds.
1728268151123456
line_items object[]
Array of line item objects.
Mod ID.
1234
Game ID.
4567
Buyer ID.
8910
Name of the mod.
my mod
Name of the game.
my game
Name of the buyer.
buyers name
breakdown object[]
Array containing breakdown of revenues.
platform object
Platform revenue.
99
store object[]
Array of store revenue objects.
Store revenue.
99
users object[]
Array of user revenue details.
Account name.
name
Account ID.
123
User revenue.
99
Total revenue for the transaction.
99
{
"id": 1234,
"gateway_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"gateway_name": "tilia",
"sale_price": 0,
"gateway_fee": 0,
"platform_fee": 0,
"currency": "usd",
"tokens": 0,
"token_team_id": 0,
"sale_type": "bought",
"monetization_type": "fiat",
"transaction_type": "paid",
"purchase_date": "2024-07-29T15:51:28.071Z",
"created_at": 1728268151123456,
"line_items": [
{
"mod_id": 1234,
"game_id": 4567,
"buyer_id": 8910,
"mod_name": "my mod",
"game_name": "my game",
"buyer_name": "buyers name"
}
],
"breakdown": [
{
"platform": {
"revenue": 99
},
"store": [
{
"revenue": 99,
"users": [
{
"account_name": "name",
"account_id": 123,
"revenue": 99
}
]
}
]
}
],
"revenue": 99
}