Me2Me fund transfer refers to the transfer of funds from a card to an account, with the same holder, within the SDWO. It is used, for example, to add balance to the digital wallet using a branded card (either credit or debit).
Alphanumeric CNPJs will be implemented by the Brazilian Federal Revenue Service in July 2026This change applies only to new registrations. There will be no changes to existing CNPJs.
The alphanumeric CNPJ is already supported by Cielo, with no changes required to your integration.
We recommend checking whether adjustments are needed in your merchant’s own checkout systems.
See below for an example of a Me2Me-type SDWO request:
Request
Ambiente | Método | Endpoint |
|---|---|---|
Sandbox | post |
|
Produção | post |
|
{
"MerchantOrderId": "2012345678",
"Customer": {
"Name": "Aline de Souza",
"Identity": "12345678900",
"IdentityType": "CPF"
},
"Payment": {
"Provider":"Cielo30",
"Type": "CreditCard",
"Amount": 15700,
"Installments": 1,
"Capture":true,
"SoftDescriptor": "CARTEIRA*NOMELOJA",
"CreditCard": {
"CardNumber": "4091688625337641",
"Holder": "Aline de Souza",
"Brand": "Visa",
"SecurityCode": "333",
"ExpirationDate": "12/2035"
},
"Wallet": {
"PlatformOperator": "ABC",
"AdditionalData": {
"Mcc": "6540",
"CashIn": true
}
}
}
}{
"MerchantOrderId": "2012345678",
"Customer": {
"Name": "Aline de Souza",
"Identity": "12345678900",
"IdentityType": "CPF"
},
"Payment": {
"Provider":"Cielo30",
"Type": "CreditCard",
"Amount": 15700,
"Installments": 1,
"Capture":true,
"SoftDescriptor": "CARTEIRA*NOMELOJA",
"SolutionType": "ExternalLinkPay",
"CreditCard": {
"CardNumber": "4091688625337641",
"Holder": "Aline de Souza",
"Brand": "Elo",
"SecurityCode": "333",
"ExpirationDate": "12/2035"
},
"Wallet": {
"PlatformOperator": "ABC",
"AdditionalData": {
"Mcc": "6054",
"CashIn": true
}
}
}
}Header parameters
| Property | Description | Type | Size | Required |
|---|---|---|---|---|
MerchantId | Merchant identifier in Gateway de Pagamento. | Text | 36 | Yes |
MerchantKey | Public key for dual authentication in Gateway de Pagamento. | Text | 40 | Yes |
RequestId | Request identifier, used when the merchant uses different servers for each GET/POST/PUT. | Text | 36 | No |
Body parameters
Check the standard credit or debit card request to verify other optional fields. The table below presents the exclusive parameters for Me2Me-type SDWO transactions.
Parameter | Description | Type | Size | Required? |
|---|---|---|---|---|
| Order identification. Can be used to cancel or query the transaction in the future. | string | 50 | Yes |
| Buyer's name. | string | 255 | Yes |
| Buyer's CPF or CNPJ number. | text | 14 | Yes, if the holder is a legal entity (CNPJ). |
| Type of buyer's identification document (CPF/CNPJ). | text | 255 | Yes, if the holder is a legal entity (CNPJ). |
| Provider name | text | 15 | Yes |
| Type of payment method. Default value: CreditCard. | string | Yes | |
| Order amount (sent in cents). | integer | 15 | Yes |
| Number of installments. For installment transactions, the number of installments will always be greater than 1. | integer | 2 | Yes |
| Boolean that identifies whether the authorization should be with automatic capture (“true”) or later capture (“false”). | boolean | Não (Default false) | |
| Text that will be printed on the cardholder's bank statement. Special characters are not allowed. Must be filled in the format WalletName*merchantname. | text | 13 | Yes |
| Payment origin. Required for Elo brand card transactions originating from a payment link. | string | 15 | Conditional |
| Buyer's card number. | string | 19 | Yes |
| Buyer's name printed on the card. Special characters or accents are not accepted. | string | 25 | Yes |
| Card brand. Possible values: Visa / Master / Amex / Elo / Aura / JCB / Diners / Discover. | string | 10 | Yes |
| Security code printed on the back of the card. | string | 4 | Yes |
| Expiration date printed on the card. Example: MM/YYYY. | string | 7 | Yes |
| Acronym of the wallet registered at Cielo as a digital wallet (check your acronym with your account manager). | string (text) | 3 | Yes |
| Digital wallet MCC for Me2Me fund transfer transactions, according to the card brand. See the MCC Table for SDWO Fund Transfer Arrangement. | string (numeric) | 4 | Yes |
| Send as true. | boolean | Yes |