Check Payment list

This endpoint returns information about transactions within a range of dates, being able to specify type of transaction, status and paging

Check Payment list

GET {{api_base_url}}/api/transactions/list/filter?since=:since&until=:until

Path Parameters

NameTypeDescription

page

int

The page you want to consult. (default 1)

size

int

Size of the page to be consulted. (default 10 - max 50)

transactionType

String

status

String

since*

String

Date in yyyy-MM-ddThh:mm:ss.SSS format.

until*

String

Date in yyyy-MM-ddThh:mm:ss.SSS format.

Headers

NameTypeDescription

Authorization*

string

Mandatory. BearerJWT token in format Bearer eyJ0... . For more information about authentication, please refer to Authenticationtoken

{
  "externalId": "test",
  "internalId": "f8be3b50-da22-43bb-afd1-2e7f1d79ab88",
    
  "currency": "ARS",
  "amount": 10000,
  "paymentCurrency": "ARS",
  "paymentAmount": 10000,
  "fxQuote": 0,
  "fxquoteToken": null,
  "confirmedamount": 10000,
  "localtaxes": 0,
  "financialfees": 0,
  "fees": 0,
  "totalamount": 10000,
  "accountNumber": "032.032.00000008",
  "transactionType": "PayIn",
  "methodcode": "1022",
  "status": {
    "code": "200",
    "description": "COMPLETED",
    "detail": "The payin was credited"
  },
  "dateCreated": "2021-11-10T16:21:19Z",
  "dateProcessed": "2021-11-24T18:18:51Z"
}

Example

curl --location --request GET '{{api_base_url}}/api/transactions/list/filter?since=2023-01-01T00:00:00.000&until=2023-01-31T23:59:59.999' \
--header 'Authorization: Bearer {{token}}'

If a type of transaction is not specified, a list of transactions will be returned, each one with its specific format.

Example response

{
  "totalElements": 54,
  "totalPages": 6,
  "page": 1,
  "size": 10,
  "details": [
    {
      "transactionType": "PayIn",
      "externalId": "1652993493",
      "internalId": "40e4ffe9-b46b-492b-861d-a8a757b88920",
      "paymentMethod": {
        "type": "Cash",
        "code": "1003",
        "flow": "DIRECT"
      },
      "country": "ARG",
      "currency": "ARS",
      "amount": 1005,
      "accountNumber": "032.032.00000015",
      "confirmed": {
        "currency": "ARS",
        "amount": 1005,
        "fxQuote": 1,
        "exchangeRateToken": null
      },
      "payment": {
        "installment": null,
        "currency": "ARS",
        "fxQuote": 1,
        "financingFee": 0,
        "amount": 1005
      },
      "localTaxes": [],
      "withHoldings": [],
      "fees": {
        "description": "Fee",
        "currency": "ARS",
        "fxSource": 118.342216,
        "fxQuote": 1,
        "amount": 0,
        "account": "032.032.00000015"
      },
      "status": {
        "code": "100",
        "description": "INPROGRESS",
        "detail": "The payin is pending the confirmation"
      },
      "ticket": {
        "id": "1111111111",
        "image": "https://api.stage.localpayment.com/api/images/1003/6002203236005007849112630060030590730000050007",
        "barcode": "3335008800000000006001885552100005200211740749",
        "expirationDate": "2022-06-30T22:59:59.000-04:00"
      },
      "qr": null,
      "beneficiary": null,
      "merchant": {
        "type": "INDIVIDUAL",
        "name": "Payer's name",
        "lastname": "payer's last name",
        "document": {
          "id": "21879875",
          "type": "DNI"
        },
        "email": "",
        "phone": {
          "countryCode": "54",
          "areaCode": "11",
          "number": "98789632"
        },
        "address": {
          "street": "Street",
          "number": "938",
          "city": "city",
          "state": "state",
          "country": "country",
          "zipCode": "zipCode",
          "comment": "Add any usefull information"
        },
        "birthdate": "2000-01-01",
        "nationality": "nationality"
      },
      "payer": {
        "type": "INDIVIDUAL",
        "name": "Payer's name",
        "lastname": "payer's last name",
        "document": {
          "id": "99999999",
          "type": "DNI"
        },
        "email": "johndoe@gmail.com",
        "phone": {
          "countryCode": "1",
          "areaCode": "11",
          "number": "98789632"
        },
        "address": {
          "street": "Street",
          "number": "1234",
          "city": "city",
          "state": "state",
          "country": "country",
          "zipCode": "zipCode",
          "comment": "Add any relevant information related to the payer"
        },
        "birthdate": "01/01/1990",
        "nationality": "nationality"
      },
      "intermediaries": [],
      "wireInstructions": null,
      "date": {
        "creationDate": "2023-01-19T20:51:34.074Z",
        "processedDate": "2023-01-19T20:51:34.918Z",
        "expirationDate": "2023-01-20T20:51:34.918Z"
      },
      "card": null,
      "errors": []
    }
  ]
}

Last updated