Skip to main content

Get Transaction

GET 

/api/transactions/:transactionId

This endpoint returns the details of a card purchase transaction by a given ID.

Request

Path Parameters

    transactionId stringrequired

    Primary identifier of the transaction to fetch

Responses

Schema

    id stringrequired

    The transaction ID

    description stringrequired

    A description of the transaction

    accountId stringrequired

    Which account this transaction belongs to

    status stringrequired

    Possible values: [init, holding, cleared, failed]

    The status of the transaction

    cardId stringrequired

    Which card this transaction belongs to

    amount stringrequired

    The billing amount of the transaction, an integer in the smallest denomination for the given currency

    currency stringrequired

    The billing currency of the transaction

    acquirerAmount stringrequired

    The acquirer amount of the transaction, an integer in the smallest denomination for the given currency

    acquirerCurrency stringrequired

    The acquirer currency of the transaction

    feeAmount stringrequired

    The fee amount of the transaction

    transactionDate date-timerequired

    The created date formatted in ISO of the transactions

    processedDate date-time

    The cleared date formatted in ISO of the transactions

    reference stringrequired

    The reference used when making an enquiry through customer support

    cardAcceptor

    object

    required

    city stringrequired

    The city of the card acceptor

    countryCode stringrequired

    The country code of the card acceptor

    name stringrequired

    The name of the card acceptor

    creditDebitIndicator string

    Possible values: [credit, debit]

    Indicates if the transaction was a credit or debit

    panFirst6 stringrequired

    The first 6 digits of the card's PAN

    panLast6 string

    The last 4 digits of the card's PAN

Loading...