post
https://api-sandbox.lafise.com/obl/v1/banks//transactions/accumulated
Allows validation of amounts and accumulated amounts of Local Remittances and Fast Shipping.
Authentication is mandatory.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
📖 Example Requests
Below you will find the body of two sample JSON requests:
- Example 1: Validate Amounts and accumulated of Local Remittances in the Panamá Core.
- Example 2: Validate Amounts and accumulated of Fast Shipping in the Nicaragua Core.
{
"debit_account": 000000000000,
"transaction_amount": 7500.00,
"identification_number": "0-0000-0000X",
"cellphone_number": "",
"transaction_currency": "USD",
"sender_identification_numer": "0-0000-0000S",
"source_country": "BLPA"
}{
"debit_account": 000000000000,
"transaction_amount": 7500.00,
"identification_number": "",
"cellphone_number": "88888888",
"transaction_currency": "USD",
"sender_identification_numer": "0-0000-0000S",
"source_country": "BLPA"
}JSON response body fields:
| Name | Description | Type |
|---|---|---|
exceeds_accumulated_for_sender | Indicates if it exceeds the cumulative for the sender. | boolean |
message_sender | Returns error message in case exceeds_accumulated_for_sender is true. | string |
exceeds_accumulated_for_beneficiary | Indicates if it exceeds the cumulative for the beneficiary. | |
message_beneficiary | Returns error message in case exceeds_accumulated_for_beneficiary is true. |
📖 Response examples
- Validate Amounts and accumulated of Fast Shipping BLNI
Below you will find four sampleJSONresponses:- Example 1: Beneficiary and Sender, do not exceed the cumulative amount allowed.
- Example 2: Beneficiary does not exceed cumulative amount and Sender if it exceeds cumulative amount allowed.
- Example 3: Beneficiary exceeds cumulative amount and Sender does not exceed cumulative amount allowed.
- Example 4: Beneficiary and Sender both exceed the cumulative amount allowed.
{ "exceeds_accumulated_for_sender": false, "exceeds_accumulated_for_beneficiary": false }{ "exceeds_accumulated_for_sender": true, "message_sender": "Gestor excede el monto límite mensual para envío veloz, el disponible de envío para este mes es: 999.99", "exceeds_accumulated_for_beneficiary": false }{ "exceeds_accumulated_for_sender": false, "exceeds_accumulated_for_beneficiary": true, "message_beneficiary": "Beneficiario excede el monto límite mensual para envío veloz, el disponible de envío para este mes es: 999.99" }{ "exceeds_accumulated_for_sender": true, "message_sender": "Gestor excede el monto límite mensual para envío veloz, el disponible de envío para este mes es: 999.99", "exceeds_accumulated_for_beneficiary": true, "message_beneficiary": "Beneficiario excede el monto límite mensual para envío veloz, el disponible de envío para este mes es: 999.99" }
- Validate Amounts and accumulated of Local Remittances BLPA
Below you will find two sampleJSONresponses:- Example 1: Sender does not exceed accumulated limit amount.
- Example 2: Sender exceeds accumulated limit amount.
{ "exceeds_accumulated_for_sender": false }{ "exceeds_accumulated_for_sender": true, "message_sender": "Gestor excede el monto límite mensual para envío veloz, el disponible de envío para este mes es: 999.99" }
