Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 38 additions & 5 deletions models/finances-api-model/finances_2024-06-19.json
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,20 @@
},
"definitions": {
"ListTransactionsResponse": {
"type": "object",
"properties": {
"payload": {
"description": "The payload for the listFinancialEvents operation.",
"$ref": "#/definitions/TransactionsPayload"
},
"errors": {
"description": "One or more unexpected errors occurred during the listFinancialEvents operation.",
"$ref": "#/definitions/ErrorList"
}
},
"description": "The Response schema."
},
"TransactionsPayload": {
"type": "object",
"properties": {
"nextToken": {
Expand All @@ -262,8 +276,7 @@
"transactions": {
"$ref": "#/definitions/Transactions"
}
},
"description": "The Response schema."
}
},
"Transactions": {
"type": "array",
Expand Down Expand Up @@ -465,7 +478,9 @@
"DISBURSEMENT_ID",
"TRANSFER_ID",
"DEFERRED_TRANSACTION_ID",
"RELEASE_TRANSACTION_ID"
"RELEASE_TRANSACTION_ID",
"FINANCIAL_EVENT_GROUP_ID",
"SETTLEMENT_ID"
],
"x-docgen-enum-table-extension": [
{
Expand Down Expand Up @@ -503,6 +518,14 @@
{
"value": "RELEASE_TRANSACTION_ID",
"description": "The transaction ID for the related released transaction"
},
{
"value": "FINANCIAL_EVENT_GROUP_ID",
"description": "The financial event group ID for the related released transaction"
},
{
"value": "SETTLEMENT_ID",
"description": "The settlement ID for the related released transaction"
}
]
},
Expand Down Expand Up @@ -586,7 +609,9 @@
"ORDER_ADJUSTMENT_ITEM_ID",
"COUPON_ID",
"REMOVAL_SHIPMENT_ITEM_ID",
"TRANSACTION_ID"
"TRANSACTION_ID",
"INVOICE_ID",
"DEAL_ID"
],
"x-docgen-enum-table-extension": [
{
Expand All @@ -604,6 +629,14 @@
{
"value": "TRANSACTION_ID",
"description": "Transaction id for the item."
},
{
"value": "INVOICE_ID",
"description": "Associated InvoiceId of transaction"
},
{
"value": "DEAL_ID",
"description": "Associated DealId of transaction"
}
]
},
Expand Down Expand Up @@ -645,7 +678,7 @@
},
"breakdowns": {
"description": "Further granular breakdowns of the BreakdownType.",
"$ref": "#/definitions/Breakdown"
"$ref": "#/definitions/Breakdowns"
}
},
"description": "Breakdown provides details regarding the money movement under the financial transaction. Breakdowns get categorized further into breakdown types, breakdown amounts, and further breakdowns into a hierarchical structure."
Expand Down