Cards
Get Card Transactions
Cards
Get Card Transactions
List all card transactions
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>",
"description": "<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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
OK
The response is of type object[]
.
Was this page helpful?
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>",
"description": "<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"
}
]