TarsPay_EN
  1. withdraw
TarsPay_EN
Brazil🇧🇷
  • 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
  • withdraw
    • Create withdraw order
      POST
    • Query withdraw order
      POST
    • withdraw query payment certificate
      POST
  • account
    • Query balance
      POST
  • CallBack
    • Callback notification interface (customized by the merchant)
      POST
  1. withdraw

withdraw query payment certificate

POST
/api/payOutProof
代付订单查询支付凭证

Request

Header Params
X-API-KEY
string 
required
Public Key
X-API-NONCE
string 
required
Request time (timestamp, accurate to milliseconds)
X-API-SIGNATURE
string 
required
Signature (refer to signature algorithm)
Body Params application/json
mchNo
string 
Merchant number
required
payOrderId
string 
Payment platform order number
optional
One of the payment platform order number and merchant order number is required
mchOrderNo
string 
Merchant order number
optional
One of the payment platform order number and merchant order number is required
Example
{
    "mchNo": "",
    "payOrderId": "",
    "mchOrderNo": ""
}

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/payOutProof' \
--header 'X-API-KEY;' \
--header 'X-API-NONCE;' \
--header 'X-API-SIGNATURE;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "mchNo": "",
    "payOrderId": "",
    "mchOrderNo": ""
}'

Responses

🟢200成功
application/json
Body
code
integer 
required
data
object 
required
accountName
string 
required
accountNumber
string 
required
amount
string 
required
bank
string 
required
createTime
string 
required
email
string 
required
payway
string 
required
mobilePhone
string 
required
refId
string 
required
tasnsId
string 
required
transDate
string 
required
state
string 
required
proofUrl
string 
required
proofData
string 
required
msg
string 
required
Example
{
    "code": 0,
    "data": {
        "accountName": "name",
        "accountNumber": "account Number ",
        "amount": "10000",
        "bank": "PIX",
        "createTime": "2022-06-11 20:50:05",
        "email": "testEmail@gmail.com",
        "payway": "PIX",
        "mobilePhone": "12333333",
        "refId": "P1547429458697138178",
        "tasnsId": "LFI-IDR-P0-a522a256-4680-4930-972b-eessss7a000a2c31",
        "transDate": "2023-06-11 20:52:13",
        "state": "Success",
        "proofUrl": "http:xxxxx.com",
        "proofData": "http:xxxxx.com"
    },
    "msg": "SUCCESS"
}
Previous
Query withdraw order
Next
Query balance
Built with