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

Name
Type
Description

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

Name
Type
Description

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

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

Example response

Last updated

Was this helpful?