Skip to main content

Get Payment Status by Id

GET 

/payments/status/:cardpaymentId

Use this endpoint to retrieve data from an existing transaction.

Note

There are no request parameters for this endpoint, besides the paymentId in the URI.

Request

Path Parameters

    cardpaymentId stringrequired

    Unique identifier of the payment.

    Example: {{cardpaymentId}}

Header Parameters

    Authorization string

    appToken created by /auth/token Format: Bearer xxxxxx...

    Example: Bearer <appToken>

Responses

OK

Schema

    links

    object

    selfstring

    URL for this set

    nextstring

    URL for the next set

    notestring

    URL to call for the next set

    meta

    object

    itemsinteger

    Number of items in the response

    countinteger

    Total count of items

    limitstring

    Limit set for the number of items

    moreboolean

    Indicates if there are more items

    data

    object[]

  • Array [

  • idstring

    Payment transaction identification code

    attributes

    object

    billingAddress

    object

    zipstring

    The card holder’s zip or postal code

    countrystring

    The card holder’s home country

    statestring

    The card holder’s home state

    line2string

    The card holder’s street address (line 2)

    citystring

    The card holder’s home city

    line1string

    The card holder’s street address (line 1)

    card

    object

    numberstring

    The unique number assigned to an account

    holderstring

    The first and last name on the account

    expirystring

    The expiration date of the payment method

    codestring

    The three-character CVV2 code

    createddate-time

    The time/date when this transaction was created

    merchantIdstring

    The merchant ID that this transaction belongs to

    paymentTypestring

    The type of payment (card, ach, token, ...)

    transaction

    object

    amountstring

    The transaction amount in dollars and cents

    currencystring

    The currency used for the transaction

    invoicestring

    The invoice number for the transaction

    codestring

    The banking entity response code

    messagestring

    The status of the transaction

  • ]