Ask or search…
K
Comment on page

List

post
https://sandbox.localpayment.com/api/v2/payouts/list
List / Check status for payouts
Example: List request Merchant_id
Request
Status Ok
{
"merchant_id": "TPXX000000111111"
}
curl --location 'https://sandbox.localpayment.com//api/v2/payouts/list' \
--header 'Authorization: {{Token_Generated}}' \
--header 'customer_id: {{Your_CustomerID}}' \
--header 'countryCode: CHL' \
--header 'Content-Type: application/json' \
--data '
[
{
"payout_id": 67901,
"customer_name": "Client",
"transaction_type": "PAYOUT",
"status": "EXECUTED",
"lot_date": "20230529",
"gross_amount": 11100,
"net_amount": 11100,
"transaction_list": [
{
"transaction_id": ,
"beneficiary_document_type": "RUT",
"beneficiary_document_number": "000000000",
"beneficiary_name": "LOCALPAYMENT SPA",
"bank_account_type": "A",
"bank_code": "000",
"beneficiary_account_number": "0000000000",
"amount": 77600,
"transaction_date": "20230529",
"merchant_id": "TPXA000000111111",
"concept_code": "0000",
"currency": "CLP",
"status": "Executed",
"status_detail": "Successfully executed",
"exchange_rate": 792495637,
"submerchant_code": "CLIENT",
"sender_name": "sample business",
"sender_address": "",
"sender_state": "",
"sender_country": "USA",
"sender_taxid": "11111111111",
"sender_birthdate": null,
"sender_email": null,
"sender_phone_number": null,
"beneficiary_phone_number": null
}
]
}
]
Example: List request by date range
Request
Status Ok
curl --location 'https://sandbox.localpayment.com//api/v2/payouts/list' \
--header 'Content-Type: application/json' \
--header '{{Token_Generated}}' \
--header 'customer_id: {{Your_CustomerID}}' \
--header 'countryCode: ARG' \
--data '
{
"date_from": "20230528",
"date_to": "20230529"
}
[
{
"payout_id": 67899,
"customer_name": "Client Argentina",
"transaction_type": "PAYOUT",
"status": "INPROGRESS",
"lot_date": "20230529",
"gross_amount": 10000,
"net_amount": 10000,
"transaction_list": [
{
"transaction_id": 328236,
"type_of_id": "CUIT",
"beneficiary_cuit": "11111111111",
"beneficiary_name": "LOCALPAYMENT SRL",
"bank_account_type": "A",
"bank_account": "000000111",
"bank_cbu": "0110000000000000010101",
"amount": 10379,
"transaction_date": "20230529",
"merchant_id": "TPXA000000111111",
"concept_code": "0040",
"currency": "ARS",
"status": "InProgress",
"status_detail": "The payout is being processed. You cannot cancel any more",
"withholding_tax_afip": 0,
"withholding_tax_agip": 0,
"withholding_tax_arba": 0,
"exchange_rate": 111111111,
"submerchant_code": "Client",
"sender_name": "sample business",
"sender_address": "Ald s road",
"sender_state": "",
"sender_country": "USA",
"sender_taxid": "12345678912",
"sender_birthdate": null,
"sender_email": null,
"sender_phone_number": null,
"beneficiary_phone_number": null
}
]
}
]