Skip to content

Payout Callback

Callback URL

methodurl
POSTMerchant provided callback URL

Header Information

Header ParameterDescription
timestampRequest timestamp
nonceRandom value
countryCountry code (CL)
appCodeApplication ID

Callback Parameters

ParameterTypeRequiredLengthDescription
merchantOrderNoStringyes32Merchant order number
tradeNoStringyesPlatform order number
amountStringyesTransaction amount
serviceAmountStringyesService fee e.g.: 18.02
statusStringInt2-Payout Success 3-Payout Failed 4-Refunded
errorCodenumberyesOrder failure status error code
errorMessageStringyesOrder failure error message: 1000-Card error or limit 1001-Refunded 1002-Channel fluctuation 9999-Others
completeTimeStringyesCompletion time in local timezone, format: yyyy-MM-dd HH:mm:ss
signStringyesSignature
Callback Example
{
"merchantOrderNo": "OrderNoExample",
"tradeNo": "TF2501010001CL0000000000000000",
"status": 2,
"amount":"1000.00",
"serviceAmount":"60.00",
"completeTime": "2025-05-01 00:00:00",
"sign": "TEEMO_SIGN"
}

Error Code Description:

errorCodeerrorMessageSuggestion
1000The account does not exist or is restrictedSuggest the user change the card
1001ReturnAlready refunded. After receiving the callback, you may retry the disbursement within 24 hours of the original request time
1002Channel server fluctuationsChannel fluctuation. Suggest retrying after 10 minutes
1018Invalid account number (may be due to mismatch with ID number, presence of special characters, or incorrect length), kindly verify and retry.Invalid account (may be due to mismatch with ID, special characters, or incorrect length)
1019Invalid RUT, kindly verify and retry.Invalid RUT
1020Unsupported bank. Please select a different bank and try again.Unsupported bank
1021Invalid document ID (may be due to incorrect length, format, or mismatch with user’s information), kindly verify and retry.Invalid ID (may be due to incorrect length, format, or mismatch with user’s information)
1022Account number does not match the account type, kindly verify and retry.Account number does not match account type
9999OthersOthers. Suggest cancelling the order

Callback Response

ParameterTypeRequiredLengthDescription
SUCCESSStringyesMust return “SUCCESS” otherwise callback will be repeated
Response Example
SUCCESS