# Transferencia Bancaria

Cómo utilizar Transferencia Bancaria para enviar un payout en Brasil

# Post

https://sandbox.transfersmile.com/api/payout

# Enviar un payout por Transferencia Bancaria en Brasil

Este endpoint te permite usar Transferencia bancaria para realizar un payout en Brasil.

# Parameters

Content-Type* string application/json; chartset=UTF-8
AppId* string APP ID en la plataforma de payout.
Authorization* string SHA256($sorted_params + $app_key)

# Body

name* string Nombre de beneficiario
- Longitud entre 5 y 100 -
phone string Teléfono de beneficiario
email string Correo de beneficiario
document_id* string Número de identificación de beneficiario
document_type* string Tipo de identificador del beneficiario
- Sólo uno: CPF, CNPJ -
bank_code* string Código de banco en Brasil, Ver** bank list **
branch* string Código de sede de banco
account* string Cuenta bancaria de beneficiario
account_type* string Tipo de cuenta de banco de beneficiario
- Sólo uno: SAVINGS, CHECKING -
account_digit string Dígito de cuenta
branch_digit string Dígito de sede bancaria
method* string Valor fijo: BANKTRANSFER
custom_code* string Payout ID de merchant
- Max. 50 chars -
fee_bear* string Tarifa de procesamiento se carga a merchant o beneficiario.
- Sólo uno: merchant o beneficiario -
amount* string Monto de Payout,
- Max. 2 números decimales
- Min 0.50, Max 1,000,000 -
amount_type string Especificar el monto es fijo para merchant o beneficiario
- Sólo uno: source_amount, arrival_amount(defecto) -
source_currency* string Moneda de cuenta de merchant
- Sólo uno: USD, EUR, GBP, BRL -
arrival_currency* string Valor fijo: BRL
notify_url* string Donde transfersmile enviará la notificación
additional_remark* string Descriptor en la factura bancaria del usuario
- Max. 40 chars -
country* string BRA for Brasil

# Responses

200: OK Envío exitoso
{
    "code": 200,
    "msg": "success",
    "time": 1628580845,
    "data": {
        "id": "TS202108100734054iRiUZFPXfQM",
        "custom_code": "custom_code9982674851738108",
        "arrival_amount": "0.51",
        "arrival_currency": "BRL",
        "source_amount": "0.07",
        "source_currency": "USD",
        "status": "IN_PROCESSING"
    }
}
400: Bad Request Orden ya existe
{
    "code": 4001010,
    "msg": "order already existed",
    "time": 1628580940,
    "data": {}
}
401: Unauthorized Desautorizado
{
    "code": 4004003,
    "msg": "permission denied",
    "time": 1637224716,
    "data": {
        ... ...
    }
}
500: Internal Server Error Tarifa no configurada
{
    "code": 5001003,
    "msg": "fee not configured",
    "time": 1637224716,
    "data": {
        ... ...
    }
}
500: Internal Server Error Balance insuficiente
{
    "code": 5001102,
    "msg": "balance insufficient",
    "time": 1637224716,
    "data": {
        ... ...
    }
}
500: Internal Server Error Error de sistema
{
    "code": 5001000,
    "msg": "system error",
    "time": 1637224716,
    "data": {
        ... ...
    }
}

# Ejemplo

curl --location --request POST 'https://sandbox.transfersmile.com/api/payout' \
--header 'AppId: 94FAC**********************68548' \
--header 'Authorization: d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302' \
--header 'Content-Type: application/json' \
--data-raw '{
    * "name" : "GUILHERME ****** SOUZA",
      "phone": "",
      "email": "[email protected]",
    * "bank_code": "001",
    * "account_type": "CHECKING", // should be one of SAVINGS, CHECKING
    * "account": "6***8",
      "account_digit": "4",
    * "branch": "0**8",
    * "document_id": "12*******91",
    * "document_type": "CPF",  // should be one of CPF, CNPJ
    * "source_currency": "BRL", 
    * "arrival_currency": "BRL", // fixed value: BRL
    * "fee_bear": "merchant", // should be one of merchant, beneficiary
    * "method": "BANKTRANSFER", // fixed value: BANKTRANSFER
    * "amount": "1.80",
    * "notify_url": "https://notify.url",
    * "custom_code" : "custom_code9982674851738108",
    * "additional_remark": "transfersmile payout test remark",
    * "country": "BRA"  // fixed value: BRA
}

TIP

Nota: 94FAC*****************68548 es el test ID de transfersmile para prueba en sandbox, y d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302 es el token de autorización asociado con el app ID de prueba.