Brazil

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 Brazil

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

Array () [

*Key required

Headers

Request Body

[
    {
        "authenticate": false,
        "transaction_id": 308047,
        "payout_id": 51622,
        "status": "Received",
        "Ticket": "16401863440000",
        "submerchant_code": "TEST",
        "sender_taxid": null,
        "sender_name": "SENDER",
        "sender_address": "ADDRESS",
        "sender_state": "STATE",
        "sender_country": "ARGENTINA",
        "sender_birthdate": null,
        "sender_email": null,
        "sender_phone_number": null,
        "sender_zip_code": null,
        "beneficiary_name": "BENFICIARY",
        "beneficiary_document_id": "XXXXXXXXXXXX",
        "bank_account_type": "C",
        "bank_code": "341",
        "bank_branch": "00019",
        "beneficiary_address": "",
        "beneficiary_account_number": "XXXXXXXX",
        "beneficiary_state": null,
        "beneficiary_country": null,
        "beneficiary_birth_date": null,
        "beneficiary_email": null,
        "beneficiary_phone_number": "0",
        "beneficiary_zip_code": null,
        "merchant_id": "1234567890001",
        "concept_code": "0001",
        "currency": "BRL",
        "payout_date": "20211222",
        "amount": 1001,
        "exchange_rate": 5659629,
        "iof_tax": 1,
        "ErrorRow": {
            "Errors": [],
            "HasError": false
        }
    }
]

Example: PayOut request

curl --location --request POST {{Api_URL}} \
--header 'Authorization: {{Token_Generated}} \
--header 'customer_id: {{Your_CustomerID}}' \
--header 'countryCode: BRA' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "amount": 543000,
        "bank_account_type": "A",
        "bank_branch": "1677",
        "bank_code": "001",
        "beneficiary_account_number": "4462-4",
        "beneficiary_document_id": 45053975809,
        "beneficiary_name": "Beneficiary Name",
        "concept_code": "0001",
        "currency": "BRL",
        "merchant_id": {{$timestamp}},
        "submerchant_code": "Submerchant Code"
    }
]

Last updated