Bolivia
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 Bolivia
POST
https://sandbox.localpayment.com/api/v2/payouts/payout
Array () [
*Key required
Headers
Request Body
[
{
"beneficiary_document_type": "NIT",
"beneficiary_document_id": "173628025",
"bank_code": "009",
"authenticate": false,
"transaction_id": 708570,
"payout_id": 567234,
"status": "Received",
"Ticket": "16596494840000",
"submerchant_code": "PRUEBA BANCO GANADERO otra",
"sender_taxid": null,
"sender_name": "Inversiones Sabaot SA",
"sender_address": "BSAS",
"sender_state": "BSAS",
"sender_country": "BOLIVIA",
"sender_birthdate": null,
"sender_email": null,
"sender_phone_number": null,
"sender_zip_code": null,
"beneficiary_name": "Inversiones Sabaot SA",
"bank_account_type": "C",
"beneficiary_account_number": "1041138743",
"beneficiary_address": null,
"beneficiary_state": null,
"beneficiary_country": null,
"beneficiary_birth_date": null,
"beneficiary_email": null,
"beneficiary_phone_number": "0",
"beneficiary_zip_code": null,
"merchant_id": "1659649485",
"concept_code": "",
"currency": "BOB",
"payout_date": "20220804",
"amount": 100,
"exchange_rate": 6805387,
"ErrorRow": {
"Errors": [],
"HasError": false
}
}
]
Example: PayOut request
curl --location --request POST {{Api_URL}} \
--header 'Authorization: {{Token_Generated}} \
--header 'customer_id: {{Your_CustomerID}}' \
--header 'countryCode: BOL' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"amount":5000,
"bank_account_type":"C",
"bank_code": "046",
"beneficiary_account_number": "3554150",
"beneficiary_name":"Beneficiary_Name",
"concept_code":"0001",
"currency:"BOB",
"merchant_id":{{$timestamp}},
"submerchant_code":"Submerchant code"
}
]
curl --location --request POST {{Api_URL}} \
--header 'Authorization: {{Token_Generated}} \
--header 'customer_id: {{Your_CustomerID}}' \
--header 'countryCode: BOL' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"amount":5000,
"bank_account_type":"C",
"bank_code": "046",
"beneficiary_account_number": "3554150",
"beneficiary_address": "Beneficiary Address",
"beneficiary_birth_date": "19800101",
"beneficiary_country": "Beneficiary Country",
"beneficiary_document_id": "678934013",
"beneficiary_document_type": "NIT",
"beneficiary_email": "email@beneficiary.com",
"beneficiary_name":"Beneficiary Name",
"beneficiary_phone_number": "123456789",
"beneficiary_state": "Beneficiary State",
"concept_code":"0001",
"currency":"BOB",
"merchant_id":{{$timestamp}},
"payout_date": "20221129",
"sender_address": "Sender Address",
"sender_birthdate": "19800101",
"sender_country": "Sender Country",
"sender_email": "email@sender.com",
"sender_name": "Sender Name",
"sender_phone_number": "987654321",
"sender_state": "Sender State",
"sender_taxid": "Sender Tax",
"submerchant_code": "Submerchant code"
}
]
[
{
"beneficiary_document_type": "NIT",
"beneficiary_document_id": "678934013",
"bank_code": "046",
"authenticate": false,
"transaction_id": 318600,
"payout_id": 61982,
"status": "Received",
"Ticket": "16680015870363",
"submerchant_code": "Submerchant Code",
"sender_taxid": null,
"sender_name": null,
"sender_address": null,
"sender_state": null,
"sender_country": null,
"sender_birthdate": null,
"sender_email": null,
"sender_phone_number": null,
"sender_zip_code": null,
"beneficiary_name": "Beneficary Name",
"bank_account_type": "C",
"beneficiary_account_number": "3554150",
"beneficiary_address": null,
"beneficiary_state": null,
"beneficiary_country": null,
"beneficiary_birth_date": null,
"beneficiary_email": null,
"beneficiary_phone_number": "0",
"beneficiary_zip_code": null,
"merchant_id": "1669665000",
"concept_code": "0001",
"currency": "BOB",
"payout_date": "20221128",
"amount": 5000,
"exchange_rate": 6768606,
"ErrorRow": {
"Errors": [],
"HasError": false
}
}
]o
[
{
"beneficiary_document_type": "NIP",
"beneficiary_document_id": "419326025",
"bank_code": "003",
"authenticate": false,
"transaction_id": 0,
"payout_id": 0,
"status": null,
"Ticket": null,
"submerchant_code": "merchant_test",
"sender_taxid": null,
"sender_name": "SENDER NAME",
"sender_address": "SENDER ADDRESS",
"sender_state": "SENDER STATE",
"sender_country": "SENDER COUNTRY",
"sender_birthdate": null,
"sender_email": null,
"sender_phone_number": null,
"sender_zip_code": null,
"beneficiary_name": "Beneficiary Name",
"bank_account_type": "C",
"beneficiary_account_number": "7015095588321",
"beneficiary_address": null,
"beneficiary_state": null,
"beneficiary_country": null,
"beneficiary_birth_date": null,
"beneficiary_email": null,
"beneficiary_phone_number": null,
"beneficiary_zip_code": null,
"merchant_id": "1669669991",
"concept_code": "0001",
"currency": "BOB",
"payout_date": "20221128",
"amount": 50100,
"exchange_rate": 0,
"ErrorRow": {
"Errors": [
{
"Key": "beneficiary_document_type",
"Messages": [
"Parameter :: beneficiary_document_type :: invalid format, only allow codes: 'CI', 'CE', 'NIT', 'PASS' ."
],
"CodeTypeError": [
"INVALID"
]
}
],
"HasError": true
}
}
]
Last updated