Get transaction list
Returns a list of transactions for all widget IDs associated with the partner account
Query Parameters
- Type: stringmerchant
_transaction _id Filters results to transactions with the specified merchant-assigned identifier.
- Type: stringdate
_start Start of the date range as a Unix timestamp (seconds since epoch)
- Type: stringdate
_end End of the date range as a Unix timestamp (seconds since epoch)
- Type: stringstatus
Filter by transaction status.
- Type: booleanshow
_retries Whether to include retry transactions in the results.
- Type: stringlimit
Maximum number of rows to return. Min: 5, max: 50.
- Type: stringoffset
Number of records to skip for pagination
Responses
- application/json
- application/json
Request Example for get/sdk-partner/transactions
curl 'https://sandbox-api.mrcr.io/v1.6/sdk-partner/transactions?merchant_transaction_id=&date_start=&date_end=&status=&show_retries=true&limit=50&offset=' \
--header 'Sdk-Partner-Token: YOUR_SECRET_TOKEN'
{
"status": 200,
"total": 100,
"next": "string",
"prev": "string",
"data": [
{
"transaction_type": {
"id": "058dc74257a417582",
"transaction_id": "058dc74303d2d0459",
"widget_id": "67710925-8b40-4767-846e-3b88db69f04d",
"merchant_transaction_id": "00357ec76de855485",
"fiat_currency": "EUR",
"fiat_amount": "200.00",
"currency": "BTC",
"amount": "0.0212512",
"status": "new",
"created_at": "2021-07-22 09:08:46",
"updated_at": "2021-07-22 09:08:46",
"email": "74111111175@tt.st",
"payment_method": "apple"
}
}
]
}