TarsPay_EN
  1. deposit
TarsPay_EN
Bangladesh🇧🇩
  • Indonesia🇮🇩
  • India🇮🇳
  • Thailand🇹🇭
  • Philippines🇵🇭
  • Malaysia🇲🇾
  • Vietnam🇻🇳
  • Egypt🇪🇬
  • Bangladesh🇧🇩
  • Kenya🇰🇪
  • Pakistan🇵🇰
  • Brazil🇧🇷
  • Mexico🇲🇽
  • Ban_TEST
  • Access Guide
  • Core Business Process Description
  • Attachment Code Table
  • deposit
    • Create a deposit order
      POST
    • Query deposit order status
      POST
    • Query TrxId
      POST
    • Reprocess TrxId
      POST
  • withdraw
    • Create withdraw order
      POST
    • Query withdraw order
      POST
  • account
    • Query balance
      POST
  • CallBack
    • Callback notification interface (customized by the merchant)
      POST
  1. deposit

Reprocess TrxId

Developing
POST
/api/trxSupplement

User has paid, but the order has not been successfully processed. Please provide the trxId for reprocessing the order.#

Request

Body Params application/json
mchNo
string 
Merchant number
required
trxId
string 
trxId
required
mchOrderNo
string 
Merchant Order Number
required
Example
{
  "mchNo": "M1658884178",
  "trxId": "BI63CWYFV9",
  "mchOrderNo": "D1660810866750"
}

Request 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 '/api/trxSupplement' \
--header 'Content-Type: application/json' \
--data-raw '{
  "mchNo": "M1658884178",
  "trxId": "BI63CWYFV9",
  "mchOrderNo": "D1660810866750"
}'

Responses

🟢200成功
application/json
Body
code
integer 
required
data
object 
required
mchOrderNo
string 
Merchant Order Number
required
message
string 
Error message
required
payOrderId
string 
平Platform Order Number台订单号
required
status
integer 
status
required
1 - success others - failed
trxId
string 
required
msg
string 
required
sign
string 
required
Example
{
    "code": 0,
    "data": {
        "mchOrderNo": "D1660810866750",
        "message": "not paid",
        "payOrderId": "P1560179978363322369",
        "status": 0,
        "trxId": "BI63CWYFV9"
    },
    "msg": "SUCCESS",
    "sign": "304602210085734f62a5829ae369eb24bd2bd59485d70d2d1cd7d0eaebedc26fea5c7d73d2022100f5b46b15ad36795185378d15b710e47914549d4b0b65af2544da740a088864a4"
}
Previous
Query TrxId
Next
Create withdraw order
Built with