Transactions

Get a list of your transactions with helpful information for your operation. Apply filters for better results.

This service is available for integrations via Cloud terminal API and Raw card-present API.

Environments

Make any adjustments to your system by testing in a dev development environment. Remember that no real transactions will be processed in this environment.

When ready, you can switch to the live environment to process real transactions.

EnvironmentBase UrlAvailability
devhttps://api-uat.kushkipagos.comCloud Terminal API and Raw Card-Present API
livehttps://api.kushkipagos.comCloud Terminal API and Raw Card-Present API

Cloud terminal API and Raw card-present API

Transaction list

Get the list of transactions by setting the number of items to return and the results page (if there are multiple). Maximum 10,000 results returned per request.

Consume the Transaction Search endpoint by sending your private key in the Private-Credential-Id header and setting the necessary filters in the request body.

Discover all the filters you can set when sending a request to obtain the list of transactions.

PropertyRequiredAllowed valuesDescription
pageYesSet the page number of the results.
sizeYesSet the number of items returned per request. Maximum 500 items per page.
filters.binNoFilter by BIN number.
filters.client_transaction_idNoFilter by transaction id generated on your side.
filters.start_dateNoFind transactions from a specific date.
filters.end_dateNoFind transactions up to a specific date.
filters.last_four_digitsNoFilter by the last 4 digits of the card.
filters.transaction_referenceNoFilter by transaction id (generated by Kushki).
filters.transaction_typeNobalanceInquiry, capture, charge, checkIn, checkout, preAuth, reAuthorization, tip, posTipFilter by operation type.

Example of request with filters:

{
"page": 1,
"size": 10,
"filters": {
"bin": "541333",
"end_date": 1712322035152,
"start_date": 1712286000000,
"last_four_digits": "0653",
"transaction_type": "preAuth",
"client_transaction_id": "5bba557f-3df8-4f07-be20-ed1ad6b28c1d",
"transaction_reference": "62c64ab2-1b09-48bd-ab98-4fa9b1893250"
}
}

Response

If the information submitted is correct and there are transactions in the specified range, you will receive an item with the list of available transactions:

{
"items": [
{
"amount": {
"extra_taxes": {}
},
"deferred": {},
"merchant_id": "20000000106781760000",
"pos_details": {},
"reading_type": "ICC",
"payment_brand": "VISA",
"transaction_type": "PREAUTH",
"transaction_status": "DECLINED",
"transaction_reference": "Test_Webhook_PREAUTH_D"
}
]
}

Please review the Transactions reference for more information.

Raw card-present API

Transaction list

Get the list of transactions by setting the number of items to return and the results page (if there are multiple). Maximum 10,000 results returned per request.

Consume the Transaction Search endpoint by sending your private key in the Private-Credential-Id header and setting the necessary filters in the request body.

Discover all the filters you can set when sending a request to obtain the list of transactions.

PropertyRequiredAllowed valuesDescription
pageYesSet the page number of the results.
sizeYesSet the number of items returned per request. Maximum 500 items per page.
filters.binNoFilter by BIN number.
filters.client_transaction_idNoFilter by transaction id generated on your side.
filters.start_dateNoFind transactions from a specific date.
filters.end_dateNoFind transactions up to a specific date.
filters.last_four_digitsNoFilter by the last 4 digits of the card.
filters.transaction_referenceNoFilter by transaction id (generated by Kushki).
filters.transaction_typeNobalanceInquiry, capture, charge, checkIn, checkout, preAuth, reAuthorization, tip, posTipFilter by operation type.

Example of request with filters:

{
"page": 1,
"size": 10,
"filters": {
"bin": "541333",
"end_date": 1712322035152,
"start_date": 1712286000000,
"last_four_digits": "0653",
"transaction_type": "preAuth",
"client_transaction_id": "5bba557f-3df8-4f07-be20-ed1ad6b28c1d",
"transaction_reference": "62c64ab2-1b09-48bd-ab98-4fa9b1893250"
}
}

Response

If the information submitted is correct and there are transactions in the specified range, you will receive an item with the list of available transactions:

{
"items": [
{
"amount": {
"extra_taxes": {}
},
"deferred": {},
"merchant_id": "20000000106781760000",
"pos_details": {},
"reading_type": "ICC",
"payment_brand": "VISA",
"transaction_type": "PREAUTH",
"transaction_status": "DECLINED",
"transaction_reference": "Test_Webhook_PREAUTH_D"
}
]
}

Please review the Transactions reference for more information.


Cancel payments

Cancel a previously authorized payment.