Skip to content

Create Cashier

Request URL

methodurl
POST/api/checkout/payment/create

Headers

Header ParameterDescription
timestampRequest timestamp
nonceRandom value
countryAR
appCodeApplication ID

Request Parameters

FieldTypeRequiredLengthDescription
merchantOrderNoString32Merchant order number
paymentTypeIntIf no transmission occurs, the configured payment method will be returned; Payment methods: 【901 (QR), 902 (CVU), 903 (CHECKOUT), 905 (Rapipago), 906 (Pagofacil)】
amountString20amount
expirationTimeString20Expiration time, millisecond-level timestamp, e.g.: 1735660800000 [Default: one day, minimum: 10 minutes, maximum: seven days]
idTypeString50Personal identification type: DNI, CUIT, CUIL 【It is recommended to use CUIT】
idCardNumberString11Personal Identification Number: DNI (7 or 8 digits), CUIT (11 digits, the first digit must be 2 or 3), CUIL (11 digits)
phoneString1010-digit number without area code
emailString50Payee’s email address; Must comply with regular expression rules
realNameString50Payee’s name. Please capitalize all letters.
callbackUrlString200Revert the callback address (if not provided, use the callback address configured in the merchant’s backend))
remarkString200remark
signStringsignature
request
{
"merchantOrderNo": "ceshi-test",
"paymentType": 901,
"amount": "1000",
"expirationTime": "1765943486000",
"idType": "CUIT",
"idCardNumber": "31231233434", // Fiction is only used for demonstration purposes.
"phone": "3111111111",
"email": "213@123.com",
"realName": "张三",
"callbackUrl": "https://www.callbackexample.com",
"sign": "YOUR_SIGN"
}

Response Parameters

ParameterTypeRequiredLengthDescription
merchantOrderNoStringyes32Merchant order number
tradeNoStringyesPlatform order number
amountStringyesOrder transaction amount
statusIntyesCollection status: 0 = processing, 3 = failed
checkoutLinkStringnoCheckout page URL
expirationTimeStringnoCheckout page expiration time
errorMsgStringnoError message, returned when failed
response
{
"code": 200,
"data": {
"merchantOrderNo": "ceshi-test",
"tradeNo": "TS2509080002ARexample754",
"amount": "100",
"status": 0,
"checkoutLink": "https://test-ar-payin.teemopay.com/#/?tradeNo=TS2509080002ARexample754",
"expirationTime": "2025-09-17 13:53:45.959",
"errorMsg": null
},
"msg": "success",
"traceId": "1e7142b1c2cf47479ccfdbb1ecba5242.94.17579264259380029"
}