Downloading transaction data Run in API Explorer
Ask AI
This request allows you to retrieve all necessary transaction data.
Data from the payer's bank
This request also allows you to obtain original data from the payer's bank for fast online transfers (pbl) and wire transfers (wt). In the sandbox environment, it is not possible to retrieve data from the payer's bank for technical reasons.
If the data from the payer's bank is not available immediately after the transaction, the API should retry downloading this data at intervals of several hours (in extreme situations, the data may be available even after 24 working hours).
GET
/{merchantId}/transaction/{transactionId}
curl \
--request GET 'https://api.imoje.pl/v1/merchant/{merchantId}/transaction/{transactionId}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": "140bb320-4699-4089-986b-93701cee055a",
"type": "sale",
"title": "yourTitle",
"amount": 10000,
"source": "api",
"status": "settled",
"created": 1735686000,
"orderId": "yourOrderId",
"payment": {
"id": "140bb320-4699-4089-986b-93701cee055a",
"status": "settled"
},
"currency": "PLN",
"modified": 1735686000,
"serviceId": "01627e4e-79d0-459a-a40b-3f64f2887499",
"paymentMethod": "blik",
"notificationUrl": "https://yourshopdomain.com/notification",
"blikTransactionId": "11111111111",
"paymentMethodCode": "blik"
}