2025-03-25
  • 2025-03-25
  • 2025-01-20
  • 2022-03-14
Help Center
VCCHUB How-to
2025-03-25
  • 2025-03-25
  • 2025-01-20
  • 2022-03-14
  1. Acquiring
  • Guides
    • Welcome
    • Interface
  • API Reference
    • Introduction
    • Endpoints
    • Data Types
    • Signing
    • 3-D Secure Verification
    • Subscription
    • Errors
    • Webhooks
    • Items Information
    • Changelog
    • Acquiring
      • Create a direct payment
        POST
      • Create a APM payment
        POST
      • Create a redirect (iFrame) payment
        POST
      • Query a transaction
        POST
      • Capture a transaction
        POST
      • Review a transaction
        POST
      • Cancel a transaction
        POST
      • Cancel a subscription
        POST
      • Refund a transaction
        POST
      • Search a refund transaction
        POST
      • Create a payout
        POST
      • Optimise payment methods
        POST
    • Issuing
      • Cardholder
        • Create cardholder
        • Delete cardholder
        • Query cardholder
      • Group
        • Create group
        • Query group details
        • Delete group
        • Group Card Withdrawal
        • Update group status
        • Recharge group
        • Query rule
      • Card
        • Create a card
        • Query card details
        • Query card transaction
        • Cancel a card
        • Withdraw from a card
        • Update card status
        • Recharge card
        • Update shared card limit
        • Query for card operation
        • Query card BIN
  • Appendix
    • Test Cards
    • Bank Code
    • Country Code
    • Currency Code
    • Payment Methods
  1. Acquiring

Review a transaction

POST
https://test-api.star-saas.com/v1/review
Review transactions up to 100 orders in a single request.

Request

Header Params

Body Params application/json

Example
{
    "merchant_id": "1018001",
	"account_id": "1018001014",
	"encryption_data": "4a051ef2f31c0244a2516325b035cdd0e49e53533414cc7b2f5fe07496d6d0ac",
    "review_orders":[
        {
            "transaction_id": "1379870771222937600",
		    "order_no": "1731485354355",
            "currency": "USD",
            "amount": "11.55",
            "review_flag":"1"
        }
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://test-api.star-saas.com/v1/review' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-raw '{
    "merchant_id": "1018001",
	"account_id": "1018001014",
	"encryption_data": "4a051ef2f31c0244a2516325b035cdd0e49e53533414cc7b2f5fe07496d6d0ac",
    "review_orders":[
        {
            "transaction_id": "1379870771222937600",
		    "order_no": "1731485354355",
            "currency": "USD",
            "amount": "11.55",
            "review_flag":"1"
        }
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{
    "account_id": "1018001014",
    "return_message": "OK",
    "return_status": "1",
    "encryption_data": "4a051ef2f31c0244a2516325b035cdd0e49e53533414cc7b2f5fe07496d6d0ac",
    "merchant_id": "1018001",
    "review_orders": [
        {
            "amount": "11.55",
            "currency": "USD",
            "error_message": "",
            "order_no": "1731485354355",
            "review_flag": "1",
            "review_status": "1",
            "transaction_id": "1379870771222937600"
        }
    ]
}
Previous
Capture a transaction
Next
Cancel a transaction