Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Panel
bgColor#79E2F2

Title: Fetch Transaction Details by Page Size

...

Panel
bgColor#F4F5F7

URL: /Payout/Disbursement/Payout/FetchPayoutTxns

Panel
bgColor#F4F5F7

Base URL: https://laas.leatherback.co

Panel
bgColor#F4F5F7

HTTP Method: GET

...

First, you need to pass the Query params stated below;

Panel
bgColor#FFC400

Query Params

Code Block
languagejson
pageNumber integer($int32)(query)
page number: ''
Default value : 1

1
pageSizeinteger($int32)
(query)
page size.

Default value : 50

 

Panel
bgColor#FFC400

Sample Response code : 200

Code Block
languagejson
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "isSuccess": true,
  "error": "string",
  "message": "string",
  "responseCode": "string",
  "value": [
    {
      "txnId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "batchId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "debitAccountNumber": "string",
      "debitAccountName": "string",
      "beneficiaryAccountNumber": "string",
      "currencyCode": "string",
      "currencySymbol": "string",
      "amount": 0,
      "narration": "string",
      "status": "string",
      "previousBalance": 0,
      "currentBalance": 0,
      "payoutType": "None",
      "tenantReference": "string",
      "paymentReference": "string",
      "beneficiaryAccountName": "string",
      "beneficiaryPaymentMethodType": "string",
      "beneficiaryPaymentMethodValue": "string"
    }
  ],
  "additionalProp1": "string",
  "additionalProp2": "string",
  "additionalProp3": "string"
}

...