Uruguay

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 Uruguay

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

Array () [

*Key required

Headers

Request Body

[
    {
        "beneficiary_document_type": "RUT",
        "beneficiary_document_id": "xxxxxxxx",
        "bank_code": "1001",
        "authenticate": false,
        "transaction_id": 308059,
        "payout_id": 51634,
        "status": "Received",
        "Ticket": "16401887120000",
        "submerchant_code": "a31321",
        "sender_taxid": null,
        "sender_name": "testsender",
        "sender_address": "Mumbai",
        "sender_state": "Maharashtra",
        "sender_country": "India",
        "sender_birthdate": null,
        "sender_email": null,
        "sender_phone_number": null,
        "sender_zip_code": null,
        "beneficiary_name": "testbene",
        "bank_account_type": "C",
        "beneficiary_account_number": "xxxxxxxxxxxxxx",
        "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": "1a2311111",
        "concept_code": "0001",
        "currency": "UYU",
        "payout_date": "20211222",
        "amount": 1000,
        "exchange_rate": 43911523,
        "ErrorRow": {
            "Errors": [],
            "HasError": false
        }
    }
]

Example: PayOut request

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

       {
        "amount": 5000,
        "bank_account_type": "A",
        "bank_code": "1137",
        "beneficiary_account_number": "000001156543",
        "beneficiary_document_id": "6.075.936-0",
        "beneficiary_document_type": "RUT",
        "beneficiary_name": "Beneficiary Name",
        "concept_code": "0001",
        "currency": "UYU",
        "merchant_id": {{$timestamp}},
        "submerchant_code": "Submerchant code"
    }
]

Last updated