VM_API
English
  • 简体中文
  • English
  1. VM Card operation
VM_API
English
  • 简体中文
  • English
  • Integration Guide
  • Environment Configuration
  • Global Error Codes
  • Transaction Type Description
  • Card Status Description
  • VM Card operation
    • Get Account Balance
      POST
    • Get Card Product Code
      POST
    • Apply for Card
      POST
    • Card Details
      POST
    • Modify Card Limit(For credit line cards only)
      POST
    • Freeze/Unfreeze Card
      POST
    • Card Top-up(For prepaid cards only)
      POST
    • Card Refund(For prepaid cards only)
      POST
    • Transaction Records
      POST
    • Delete Card
      POST
  • Notification
    • WebHook
    • Card 3DS Notification
  • Get accessToken
    GET
  1. VM Card operation

Transaction Records

POST
/cardTransaction
最后修改时间:2025-06-05 03:33:02
Get Transaction Records
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox-api.vmcardio.com/cardTransaction' \
--header 'Authorization: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "page": "string",
    "page_size": "string",
    "card_id": "string",
    "auth_id": "string",
    "transaction_type": "string",
    "status": "string",
    "start_time": "string",
    "end_time": "string"
}'
响应示例响应示例
{
    "code": 0,
    "msg": "ok",
    "data": {
        "total": 2,
        "list": [
            {
                "auth_id": "335456****",
                "card_id": "card4513478964543******",
                "auth_time": "2024-09-05 10:51:45",
                "auth_amount": 0.32,
                "auth_currency": "USD",
                "settle_amount": 0.32,
                "settle_currency": "USD",
                "status": "COMPLETE",
                "type": "Settlement",
                "merchant_name": "TAOBAO.COM            ",
                "create_time": "2024-09-09 11:32:02",
                "description": "",
                "aquirer_id": "",
                "merch_id": "",
                "mcc": "",
                "commission_detail": ""
            }
        ]
    }
}

请求参数

Header 参数
Authorization
string 
可选
默认值:
{{Authorization}}
Body 参数application/json
page
string 
可选
Page number (default: 1)
page_size
string 
可选
Page size (default: 100, maximum: 1000)
card_id
string 
Card ID
可选
auth_id
string 
可选
Transaction ID
transaction_type
string 
可选
Transaction type: Authorization - Purchase Authorization, Settlement - Settlement, Refund - Refund, Reversal - Authorization Reversal
status
string 
可选
Transaction status: PENDING - Pending Settlement, DECLINED - Failed Transaction, COMPLETE - Settled
start_time
string 
可选
Start time
end_time
string 
可选
End time
示例

返回响应

🟢200成功
application/json
Body
code
integer 
必需
msg
string 
必需
data
object 
必需
total
integer 
必需
list
array [object {16}] 
必需
修改于 2025-06-05 03:33:02
上一页
Card Refund(For prepaid cards only)
下一页
Delete Card
Built with