OpenApi
  1. PayIn-MX API
OpenApi
  • Introduce
  • 响应码
  • 测试数据
  • 接口规则
    • 安全规范
  • PayIn-MX API
    • PayIn-onlineBanking
      POST
    • PayIn-queryList
      POST
  • PayIn-NG API
    • PayIn-initialize
      POST
    • PayIn-query
      POST
  • PayOut API
    • PayOut-bankSubmit
      POST
    • PayOut-query
      POST
  • TransferIn API
    • TransferIn-detail
      POST
  • Bank API
    • Query bank list
      POST
  • BankAccount API
    • Query account name
      POST
  • Merchant Api
    • updateStatus
      POST
    • openSubMerchant
      POST
    • queryMerchantBalance
      POST
  • notify
    • PayOut result notification
    • PayIn result notification
    • Recharge result notification
  1. PayIn-MX API

PayIn-onlineBanking

sandbox
https://openapi-sandbox.aicapay.com/merchant-order-biz
sandbox
https://openapi-sandbox.aicapay.com/merchant-order-biz
POST
https://openapi-sandbox.aicapay.com/merchant-order-biz
/openapi/payIn-mx/transaction/initialize
Maintainer:胡正强
Mexico, PayIn,
amount unit: cent;
when payType == 1 then amount optional;
when payType == 3 then amount is request and need >= 1000.
users can make multiple payments for the same order.
We will notify you every time it is successful, and the amount will be based on the actual payment.

Request

Header Params
Content-Type
string 
optional
Default:
application/json
Body Params application/json
merchantOrderId
string 
required
Merchant OrderId
<= 64 characters
Example:
AC71EC46019F49BBA7B61176E96843B4
amount
integer <int64>
required
Business amount, unit: minimum unit of measurement in currency
Example:
10000
desc
string 
optional
Order Description
<= 256 characters
notifyUrl
string 
optional
Notify merchant result URL
<= 256 characters
payType
integer <int32>
required
SPEI: 1
CASH: 3
Allowed values:1,3
Default:1
Example:
1
Example
{
    "merchantOrderId": "AC71EC46019F49BBA7B61176E96843B4",
    "amount": 10000,
    "desc": "string",
    "notifyUrl": "string",
    "payType": 1
}

Responses

🟢200OK
*/*
OK
Body
url
string 
required
url
expireTime
string <date-time>
required
expireTime
Example
{
    "url": "string",
    "expireTime": "2019-08-24T14:15:22Z"
}
Previous
安全规范
Next
PayIn-queryList
Built with