diff --git a/source/index.html.md b/source/index.html.md
index 8b7acd8..253590d 100644
--- a/source/index.html.md
+++ b/source/index.html.md
@@ -15892,7 +15892,7 @@ Status|Meaning|Error Ref|Description|Response Schema
200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)||Successful Request|[S2S Pay Object](#schemas2s_pay_object)
## Transaction Commit
@@ -16038,7 +16038,7 @@ Status|Meaning|Error Ref|Description|Response Schema
200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)||Successful Request|[S2S Pay Object](#schemas2s_pay_object)
## Transaction Clawback
@@ -16190,7 +16190,7 @@ Status|Meaning|Error Ref|Description|Response Schema
200|[OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)||Successful Request|[Refund Object](#schemarefund_object)
## Disconnect User
@@ -18221,6 +18221,69 @@ result_total|integer|Total number of results found.
+## Get Transactions
+
+
+
+```json
+{
+ "data": [
+ {
+ "id": 1234,
+ "gateway_uuid": "123e4567-e89b-12d3-a456-426614174000",
+ "gateway_name": "tilia",
+ "account_id": "12345",
+ "gross_amount": 199,
+ "net_amount": 199,
+ "platform_fee": 20,
+ "gateway_fee": 30,
+ "tax": 0,
+ "tax_type": "sales",
+ "currency": "usd",
+ "tokens": 0,
+ "transaction_type": "paid",
+ "monetization_type": "paid",
+ "purchase_date": "2024-10-07 02:29:11",
+ "created_at": "1728268151",
+ "payment_method": [
+ {
+ "name": "Visa ending in 1111",
+ "id": "123e4567-e89b-12d3-a456-426614174000",
+ "amount": 199,
+ "display_amount": "USD 1.99"
+ }
+ ],
+ "line_items": [
+ {
+ "game_id": 0,
+ "buyer_id": 0,
+ "game_name": "my game",
+ "buyer_name": "smith",
+ "token_name": "mio",
+ "token_pack_id": 0,
+ "token_pack_name": "200 Pack"
+ }
+ ]
+ }
+ ],
+ "download": {
+ "per_page": "15",
+ "current_page": "/v1/s2s/monetization-teams/{monetization-team-id}/transactions?cursor=eyJjcmVhdGVkX2F0IjoiMjAyNC0xMC0wMiAwMDo1NTozMiIsIl9wb2ludHNUb05leHRJdaAJdsa10",
+ "next_page_url": "/v1/s2s/monetization-teams/{monetization-team-id}/transactions?cursor=eyJjcmVhdGVkX2F0IjoiMjAyNC0xMC0wMiAwMDo1NTozMiIsIl9wb2ludHNUb05leHRJdaAJdsa10",
+ "prev_page_url": "/v1/s2s/monetization-teams/{monetization-team-id}/transactions?cursor=eyJjcmVhdGVkX2F0IjoiMjAyNC0xMC0wMiAwMDo1NTozMiIsIl9wb2ludHNUb05leHRJdaAJdsa10"
+ }
+}
+```
+
+### Properties
+
+Name|Type|Description
+---|---|---|---|
+download|[Pagination Object](#schemapagination_object)|Contains pagination data.
+data|[Transaction Object](#schematransaction_object)[]|Array containing transaction objects.
+
+
+
## Get User Events
@@ -18516,6 +18579,36 @@ value|string|Value of the key-value pair. Will always be a string, even if numer
+## Line Items Object
+
+
+
+```json
+{
+ "game_id": 0,
+ "buyer_id": 0,
+ "game_name": "my game",
+ "buyer_name": "smith",
+ "token_name": "mio",
+ "token_pack_id": 0,
+ "token_pack_name": "200 Pack"
+}
+```
+
+### Properties
+
+Name|Type|Description
+---|---|---|---|
+game_id|integer|The game id of the transaction.
+buyer_id|integer|The buyer id of the transaction.
+game_name|string|The name of the game the purchase occured on.
+buyer_name|string|The username of the buyer.
+token_name|string|The pretty name of the virtual currency used in the transaction.
+token_pack_id|integer|The id of the virtual currency pack used in the transaction.
+token_pack_name|string|The pretty name of the virtual currency pack used in the transaction.
+
+
+
## Logo Object
@@ -19196,6 +19289,30 @@ date_added|integer|Unix timestamp of date the part was uploaded.
+## Pagination Object
+
+
+
+```json
+{
+ "per_page": "15",
+ "current_page": "/v1/s2s/monetization-teams/{monetization-team-id}/transactions?cursor=eyJjcmVhdGVkX2F0IjoiMjAyNC0xMC0wMiAwMDo1NTozMiIsIl9wb2ludHNUb05leHRJdaAJdsa10",
+ "next_page_url": "/v1/s2s/monetization-teams/{monetization-team-id}/transactions?cursor=eyJjcmVhdGVkX2F0IjoiMjAyNC0xMC0wMiAwMDo1NTozMiIsIl9wb2ludHNUb05leHRJdaAJdsa10",
+ "prev_page_url": "/v1/s2s/monetization-teams/{monetization-team-id}/transactions?cursor=eyJjcmVhdGVkX2F0IjoiMjAyNC0xMC0wMiAwMDo1NTozMiIsIl9wb2ludHNUb05leHRJdaAJdsa10"
+}
+```
+
+### Properties
+
+Name|Type|Description
+---|---|---|---|
+per_page|integer|The number of items shown per page.
+current_page|string|The url for the current page.
+next_page_url|integer|The url for the next page if it exists.
+prev_page_url|integer|The url for the previous page if it exists.
+
+
+
## Pay Object
@@ -19364,6 +19481,30 @@ mod|[Mod Object](#schemamod_object)|The mod that was purchased.
+## Payment Method Object
+
+
+
+```json
+{
+ "name": "Visa ending in 1111",
+ "id": "123e4567-e89b-12d3-a456-426614174000",
+ "amount": 199,
+ "display_amount": "USD 1.99"
+}
+```
+
+### Properties
+
+Name|Type|Description
+---|---|---|---|
+name|string|The pretty name of the payment method that was used.
+id|string|The UUID of the payment method id that was used.
+amount|integer|The amount the payment method was charged.
+display_amount|string|A pretty string of the amount the payment method was charged.
+
+
+
## Preview Object
@@ -19688,6 +19829,75 @@ danger|string|The danger hex color code.
+## Transaction Object
+
+
+
+```json
+{
+ "id": 1234,
+ "gateway_uuid": "123e4567-e89b-12d3-a456-426614174000",
+ "gateway_name": "tilia",
+ "account_id": "12345",
+ "gross_amount": 199,
+ "net_amount": 199,
+ "platform_fee": 20,
+ "gateway_fee": 30,
+ "tax": 0,
+ "tax_type": "sales",
+ "currency": "usd",
+ "tokens": 0,
+ "transaction_type": "paid",
+ "monetization_type": "paid",
+ "purchase_date": "2024-10-07 02:29:11",
+ "created_at": "1728268151",
+ "payment_method": [
+ {
+ "name": "Visa ending in 1111",
+ "id": "123e4567-e89b-12d3-a456-426614174000",
+ "amount": 199,
+ "display_amount": "USD 1.99"
+ }
+ ],
+ "line_items": [
+ {
+ "game_id": 0,
+ "buyer_id": 0,
+ "game_name": "my game",
+ "buyer_name": "smith",
+ "token_name": "mio",
+ "token_pack_id": 0,
+ "token_pack_name": "200 Pack"
+ }
+ ]
+}
+```
+
+### Properties
+
+Name|Type|Description
+---|---|---|---|
+id|integer|Unique transaction id.
+gateway_uuid|string|The universally unique ID (UUID) that represents the tranasction id.
+gateway_name|string|The gateway that processed the transaction.
+account_id|integer|The unique monetization account id that actioned the transaction.
+gross_amount|integer|The gross amount of the transaction.
+net_amount|integer|The net amount of the transaction.
+platform_fee|integer|The platform fee of the transaction.
+gateway_fee|integer|The gateway fee of the transaction.
+tax|integer|The tax amount of the transaction.
+tax_type|string|The tax type on the processed transaction.
+currency|string|The currency type on the processed transaction.
+tokens|integer|The amount of virtual currency associated with the transaction. Will be omitted when no tokens are involved.
+transaction_type|string|The transaction status type on the processed transaction. I.e. is it paid, pending, refunded or cleared.
+monetization_type|string|The monetizaton type on the processed transaction. I.e. is it fiat, tokens or external.
+purchase_date|string|The purchase date in a human reabled date time stamp.
+created_at|string|Unix timestamp of date the transaction was created at. Same as purchased at date.
+payment_method|[Payment Method Object](#schemapayment_method_object)[]|Array containing payment method objects.
+line_items|[Line Items Object](#schemaline_items_object)[]|Array containing line item objects.
+
+
+
## User Access Object