Skip to content

Create Payin

Request URL

methodurl
POST/api/pay/payment/create/v1

Header Information

Header ParameterDescription
timestampRequest timestamp
nonceRandom value
countryCountry code (e.g., BR)
app_codeApplication ID

Supported Payment Methods (paymentType)

Payment MethodPaymentType (Parameter)
PIX (Online bank transfer)401

Additional Information Fields Explanation

Field NameTypeRequiredDescription
----

Request Parameters

FieldTypeRequiredLengthDescription
merchantOrderNoStringYes32Merchant order number
paymentTypeIntYesPayment Type: 401-PIX
amountStringYes20Payin amount (in Brazilian Real), up to 2 decimal places
expirationTimeLongNoExpiration time
realNameStringNo64Userโ€™s real name
emailStringNo50Userโ€™s email, must match the regex format
phoneStringNo50Phone number
idCardNumberStringNo50ID card number
signStringYesSignature
callbackUrlStringNo200Callback URL
{
"merchantOrderNo": "OrderNoExample",
"realName": "TeemoPay",
"amount": "100.1",
"callbackUrl": "https://www.callbackexample.com",
"paymentType": 401,
"email": "TeemoPay@example.com",
"phone": "11987654321",
"idCardNumber": "1234567890",
"sign": "YOUR_SIGN",
"expirationTime": 1717092000000
}