Wallet

Where to use Vita wallet to submit a payout in Chile.

Submit a payout by Wallet in Chile

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

This endpoint allows you to submit a payout by e-Wallet in Chile.

Headers

NameTypeDescription

Content-Type*

string

application/json; charset=UTF-8

AppId*

string

Your App ID in payout platform

Authorization*

string

SHA256($sorted_params + $app_key)

Request Body

NameTypeDescription

name

string

Beneficiary's name

- Min.5 Max.100 -

phone

string

Beneficiary's phone.

- 0 ~ 15 digits -

email

string

Beneficiary's email

- Max.64 -

account*

string

Beneficiary Vita account.

- 0 ~ 64 chars -

account_type*

string

Fixed Value: EMAIL

document_id

string

Beneficiary document id

document_type

string

Beneficiary document type

methd*

string

Fixed Value: WALLET

channel*

string

Fixed Value: Vita

custom_code*

string

Merchant's order id

- Max.50 -

fee_bear*

string

One of [beneficiary | merchant]

amount*

string

Payout amount, should be an Integer.

- Min 5000, Max 2,000,000 -

amount_type

string

Specify the amount value is fixed for merchant or beneficiary - One of: source_amount, arrival_amount(default) -

arrival_currency*

string

Beneficiary's account currency.

- Fixed Value: CLP -

source_currency*

string

Merchant's account currency

- supported: USD, GBP, EUR, CLP -

notify_url*

string

Where pagsmile will callback to

additional_remark*

string

Additional Remark - Max length: 40 -

country*

string

Beneficiary's Country

- Fixed Value: CHL -

{
    "code": 200,
    "msg": "success",
    "time": 1628580845,
    "data": {
        "id": "TS202108100734054iRiUZFPXfQWCL",
        "custom_code": "custom_code9982674851738108",
        "arrival_amount": "100",
        "arrival_currency": "CLP",
        "source_amount": "0.07",
        "source_currency": "USD",
        "status": "IN_PROCESSING"
    }
}

Example of Document

  • RUT / RUN numbers have eight digits, plus a verification digit, and are generally written in this format: xxxxxxxx-z. Z can be a digit or the letter K. For example 3******7-K, 7******8-5. Only send alphanumeric values in the API, like 3******7K.

  • For individuals, RUT is the same as RUN. For businesses, they only have RUT.

Document TypeDocument IDDescription

RUT

7******85

9 digits

A RUT (Rol Único Tributario) is the individual tax ID number

RUN

7******85

9 digits

A RUN (Rol Único Nacional) is a unique identification number given to every Chilean resident, foreign resident, and anyone who stays in Chile on anything other than a tourist visa

Example

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" : "468****068",
      "email" : "g******me@gmail.com",
    * "account" : "g******me@gmail.com",
    * "account_type" : "EMAIL",
      "document_id" : "************",
      "document_type" : "***",
    * "method" : "WALLET",
    * "channel" : "Vita",
    * "custom_code" : "custom_code9982674851738108",
    * "fee_bear" : "merchant",
    * "amount" : "100", //Amount should be an integer, like 1.00 is not available.
    * "source_currency" : "CLP",
    * "arrival_currency" : "CLP",
    * "notify_url" : "https://notify.url",
    * "additional_remark" : "pagsmile payout test",
    * "country": "CHL"
}'

Note: 94FAC**********************68548 is Pagsmile's test App ID for sandbox, and d6181db0d6548b94b162e75d095b59147172d914699f83b2bd17951a671b6302 is authorization token associated with the test App ID.

Last updated