GET
/
v2.01
/
{ClientId}
/
cards
/
fingerprints
/
{Fingerprint}
/
transactions
[
    {
        "Id":"148786887",
        "Tag":"Custom description for this specific PayIn",
        "CreationDate":1660119203,
        "AuthorId":"142036728",
        "CreditedUserId":"145397183",
        "DebitedFunds":{
            "Currency":"EUR",
            "Amount":12000
        },
        "CreditedFunds":{
            "Currency":"EUR",
            "Amount":12000
        },
        "Fees":{
            "Currency":"EUR",
            "Amount":0
        },
        "Status":"FAILED",
        "ResultCode":"009199",
        "ResultMessage":"PSP technical error",
        "ExecutionDate":null,
        "Type":"PAYIN",
        "Nature":"REGULAR",
        "CreditedWalletId":"145397873",
        "DebitedWalletId":null
    }
]  
This call returns all the transactions made with cards with the same Fingerprint value.
Note – Web card pay-ins not returnedThis endpoint doesn’t return transactions processed via the web card pay-in endpoint.

Path parameters

Fingerprint
string
required
The unique representation of the card number. This string can be used to track the card behavior while keeping the card information confidential.

Query parameters

Status
string
Allowed values: CREATED, SUCCEEDED, FAILEDThe status of the transaction. You can filter on multiple values by separating them with a comma.
ResultCode
string
The code indicating the result of the operation. You can filter on multiple values by separating them with a comma.
BeforeDate
Unix timestamp
The date before which the transaction was created (based on the transaction’s CreationDate parameter). You can filter on a specific time range by using both the AfterDate and BeforeDate query parameters.
AfterDate
Unix timestamp
The date after which the transaction was created (based on the transaction’s CreationDate parameter). You can filter on a specific time range by using both the AfterDate and BeforeDate query parameters.

Responses

[
    {
        "Id":"148786887",
        "Tag":"Custom description for this specific PayIn",
        "CreationDate":1660119203,
        "AuthorId":"142036728",
        "CreditedUserId":"145397183",
        "DebitedFunds":{
            "Currency":"EUR",
            "Amount":12000
        },
        "CreditedFunds":{
            "Currency":"EUR",
            "Amount":12000
        },
        "Fees":{
            "Currency":"EUR",
            "Amount":0
        },
        "Status":"FAILED",
        "ResultCode":"009199",
        "ResultMessage":"PSP technical error",
        "ExecutionDate":null,
        "Type":"PAYIN",
        "Nature":"REGULAR",
        "CreditedWalletId":"145397873",
        "DebitedWalletId":null
    }
]