Chile

Localpayment's API works 24/7/365, the payments are processed during business hours from 9am to 15pm GMT -3 when we have our cut-off. Requests done after the cut-off will be executed next business day

Create Payout Chile

POST https://sandbox.localpayment.com/api/v2/payouts/payout

Array () [

*Key required

Headers

Request Body

[
    {
        "beneficiary_document_type": "RUT",
        "beneficiary_document_id": "0-32852742",
        "bank_code": "009",
        "authenticate": false,
        "transaction_id": 318608,
        "payout_id": 61990,
        "status": "Received",
        "Ticket": "16680015870371",
        "submerchant_code": "Submerchant Code",
        "sender_taxid": null,
        "sender_name": null,
        "sender_address": "",
        "sender_state": null,
        "sender_country": null,
        "sender_birthdate": null,
        "sender_email": null,
        "sender_phone_number": null,
        "sender_zip_code": null,
        "beneficiary_name": "testbene",
        "bank_account_type": "C",
        "beneficiary_account_number": "123456789012345",
        "beneficiary_address": "",
        "beneficiary_state": null,
        "beneficiary_country": null,
        "beneficiary_birth_date": null,
        "beneficiary_email": null,
        "beneficiary_phone_number": "0",
        "beneficiary_zip_code": null,
        "merchant_id": "1669677728",
        "concept_code": "0001",
        "currency": "CLP",
        "payout_date": "20221128",
        "amount": 1000,
        "exchange_rate": 924570763,
        "ErrorRow": {
            "Errors": [],
            "HasError": false
        }
    }
]

Example: PayOut request

curl --location --request POST {{Api_URL}} \
--header 'Authorization: {{Token_Generated}} \
--header 'customer_id: {{Your_CustomerID}}' \
--header 'countryCode: CHL' \
--header 'Content-Type: application/json' \
--data-raw '[

    {
        "amount": 1010,
        "bank_account_type": "C",
        "bank_code": "009",
        "beneficiary_account_number": "123456789012345",
        "beneficiary_document_id": "8900960-k",
        "beneficiary_document_type": "RUT",
        "beneficiary_name": "testbene",
        "concept_code": "0001",
        "currency": "CLP",
        "merchant_id": {{$timestamp}},
        "submerchant_code": "Submerchant Code"
    }
]

Last updated