Information about all the transactions created or updated within a certain interval can be retrieved by using an action based on GET HTTP request. The response will contain a transaction list in JSON format that returns all the transactions that were created or updated in the interval start_date – end_date.
Only a limited amount of details for each transaction will be provided.
Response Model:
{
"transactions": [
{
"amount": 0.80,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1234,
"order_id": "34991440-A",
"order_line_id" : "34991440-A-1",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "COMMISSION_VAT"
},
{
"amount": 3.33,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1235,
"order_id": "34991440-A",
"order_line_id" : "34991440-A-1",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "COMMISSION_FEE"
},
{
"amount": 0,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1236,
"order_id": "34991440-A",
"order_line_id" : "34991440-A-1",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "ORDER_SHIPPING_AMOUNT"
},
{
"amount": 10.00,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1237,
"order_id": "34991440-A",
"order_line_id": "34991440-A-1",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "ORDER_AMOUNT"
},
{
"amount": 1.60,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1238,
"order_id": "34991440-A",
"order_line_id" : "34991440-A-2",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "COMMISSION_VAT"
},
{
"amount": 6.66,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1239,
"order_id": "34991440-A",
"order_line_id" : "34991440-A-2",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "COMMISSION_FEE"
},
{
"amount": 0,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1240,
"order_id": "34991440-A",
"order_line_id" : "34991440-A-2",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "ORDER_SHIPPING_AMOUNT"
},
{
"amount": 10.00,
"currency": "EUR",
"date_created": "2018-09-17T12:55:08Z",
"last_updated": "2018-10-12T00:00:30Z",
"cart_id": 1241,
"order_id": "34991440-A",
"order_line_id" : "34991440-A-2",
"payment_state": "PAID",
"payment_batch_number": "000068",
"refund_id": null,
"seller_id": 6221,
"seller_name": "Best Shop",
"transaction_type": "ORDER_AMOUNT"
}
],
"total_count": 8
}
Only the transactions with payment_state = “PAID” will be settled in the current settlement cycle.