Transactions

Endpoint:

Method: GET
Type: 
URL: {{API_BASE_URL}}v2/cards/transactions

Request Parameter:

Parameter Required Type Description
start_timestamp Y integer start time of transactions
end_timestamp Y integer end time of transactions
card_number N string card number, Multiple card numbers separate with comma
page N integer page
per_page N integer page size
status N string Status
{
  "start_timestamp": 1643644800,
  "end_timestamp": 1644508799,
  "card_number": "5329000000000000,5329000000000001"
}

Response

Parameter Type Description
data object data
id integer transaction id
card_number string card_number
alias string card alias name
username string username of card owner
merchant_name string merchant_name
billing_amount string billing_amount
billing_currency string billing_currency
status string status
fail_reason string fail_reason
transaction_type string transaction_type
transaction_unix_timestamp integer authorization_unix_timestamp
billing_status enum billing_status: [pending, released, processed]
meta object meta
pagination object pagination
total number total
count number count
per_page number per_page
current_page number current_page
total_pages number total_pages
links object links
next string next
Status:200 ok
{
    "data": [
        {
            "id": 6,
            "transaction_unix_timestamp": 1644508800,
            "card_number": "5329593610000000",
            "alias": "test",
            "username": "tom",
            "merchant_name": "FACEBK ZR6GW8XXXX      fb.me/ads     IRL",
            "billing_amount": 900,
            "billing_currency": "USD",
            "status": "approved",
            "transaction_type": "authorization",
            "fail_reason": "Approved or completed successfully/Approval"
        }
    ],
    "meta": {
        "pagination": {
            "total": 1,
            "count": 1,
            "per_page": 15,
            "current_page": 1,
            "total_pages": 1,
            "links": {}
        }
    }
}