GET
/
cards
/
{id}
/
transactions
curl -X GET https://api.swervpay.co/api/v1/cards/{id}/transactions \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json"
[
  {
    "amount": 123,
    "category": "<string>",
    "charges": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "currency": "<string>",
    "id": "<string>",
    "merchant_city": "<string>",
    "merchant_country": "<string>",
    "merchant_mcc": "<string>",
    "merchant_mid": "<string>",
    "merchant_name": "<string>",
    "merchant_postal_code": "<string>",
    "merchant_state": "<string>",
    "reference": "<string>",
    "report": true,
    "report_message": "<string>",
    "status": "<string>",
    "type": "<string>",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]
curl -X GET https://api.swervpay.co/api/v1/cards/{id}/transactions \
  -H "Authorization: Bearer <TOKEN>" \
  -H "Content-Type: application/json"

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

page
integer
limit
integer

Response

200 - application/json
amount
number
category
string
charges
number
created_at
string
currency
string
id
string
merchant_city
string
merchant_country
string
merchant_mcc
string
merchant_mid
string
merchant_name
string
merchant_postal_code
string
merchant_state
string
reference
string
report
boolean
report_message
string
status
string
type
string
updated_at
string