1. Card Transactions
Vrtx Docs
  • Card Transactions
    • Perform a simulated card transaction
      POST
    • Perform a balance inquiry
      POST
    • Build a clearing message for settlement
      POST
    • Build and submit clearing to FAST
      POST
    • Send an advisement message
      POST
  • Cards Router Proxy
    • Proxy /fast/settlement to cards-router
      POST
    • Proxy /fast/customer-info to cards-router
      POST
    • Proxy /fast/authorisation to cards-router
      POST
  • Debug Fast
    • Look up clearing event by TID and ADD_REF_RID
      GET
    • Look up auth by TID and ADD_REF_RID
      GET
  • Card Sensitive Data
    • Get card sensitive data
      GET
  • Payouts
    • List payouts
      GET
  • Account Transactions
    • List account transactions (V2)
      GET
Open-Loop-v2Closed-loop V2Card Simulator
open-loop-test
Open-Loop-v2Closed-loop V2Card Simulator
open-loop-test
  1. Card Transactions

Build and submit clearing to FAST

POST
https://api.staging.vrtx.sa/testhelpers/card-transactions/clearing/submit
Last modified:2026-04-14 14:51:07
Builds a clearing message from TID + ADD_REF_RID and POSTs it to Cards Router /fast/settlement. Returns the FAST response.

Request

Query Params

Body Params application/jsonRequired

Examples

Responses

🟢200
*/*
Clearing submitted successfully
Body

đźź 404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.staging.vrtx.sa/testhelpers/card-transactions/clearing/submit?simulate_tid_not_found&simulate_delay_ms' \
--header 'Content-Type: application/json' \
--data-raw '{
    "TID": 319292099329393000000,
    "ADD_REF_RID": 7829103,
    "Transaction_Amount": 5,
    "Transaction_Currency": 682,
    "Billing_Amount": 5,
    "Billing_Currency": 682,
    "packet_type": "TC05"
}'
Response Response Example
200 - Example 1
{}
Modified at 2026-04-14 14:51:07
Previous
Build a clearing message for settlement
Next
Send an advisement message
Built with