List

List / Check status for payouts

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

Headers

NameTypeDescription

Content-Type*

String

Default: application/json

Content Type

Authorization*

String

Authorization

customer_id*

String

String <= 12

Customer id

countryCode*

String

Check In Country Codes

Request Body

NameTypeDescription

payout_id

Integer

integer<64>

transaction_id

Integer

integer<64>

merchant_id

String

[ 0 .. 60 ] characters

date_from

String

8 characters

format - yyyymmdd

date_to

String

8 characters

format - yyyymmdd

[
    {
        "payout_id": 51608,
        "customer_name": "Customer X",
        "transaction_type": "PAYOUT",
        "status": "RECEIVED",
        "lot_date": "20211222",
        "gross_amount": 100,
        "net_amount": 100,
        "transaction_list": [
            {
                "transaction_id": 308033,
                "type_of_id": "5",
                "id": "123456",
                "beneficiary_name": "beneficiaryCompany",
                "bank_account_type": "27",
                "bank_account": "111111111",
                "bank_code": "1507",
                "amount": 100,
                "transaction_date": "20211222",
                "merchant_id": "068a33783f1bb859c48657e73828e1a6",
                "concept_code": "0014",
                "currency": "COP",
                "status": "Received",
                "status_detail": "The payout was received and will be processed",
                "exchange_rate": 3961881000,
                "submerchant_code": "my org1",
                "sender_name": null,
                "sender_address": "",
                "sender_state": null,
                "sender_country": null,
                "sender_taxid": null,
                "sender_birthdate": null,
                "sender_email": null,
                "sender_phone_number": null,
                "beneficiary_phone_number": null,
                "gmf_tax": "0"
            }
        ]
    }
]

Example: List request Merchant_id

{
  "merchant_id": "TPXX000000111111"
}

Example: List request by date range

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"
}

Last updated