Query Settlement Entries

Return a paginated list of all settlement entries matching the given search criteria. If payoutId is not specified, currency, createdAfter and createdBefore must all be provided.

SecurityMarketplace Api Key | Merchant Secret Token | Admin JWT | Merchant JWT | Marketplace JWT
Request
query Parameters
limit
integer <int32>

Maximum results per page. Default to 20, must be between 1 and 500.

page
integer <int32>

Page number of results to show (starting at page 1).

sort
string

Comma-delimited list of fields to sort by with sort priority from first to last. Fields are sorted by their natural ordering unless prefixed with a - character.

merchantId
required
string

System identifier for merchant to show entries for

currency
string

Currency of entries

Example: currency=AUD
createdAfter
string <date-time>

Return settlement entries that were created at or after this timestamp in ISO-8601 format

Example: createdAfter=2024-09-06T05:56:26.519428086Z
createdBefore
string <date-time>

Return settlement entries that were created at or before this timestamp in ISO-8601 format

settlementType
string (SettlementType)
Default: "Net"

Include both payment and fee entries (Net) or just payment entries (Gross).

Enum: "Net" "Gross"
payoutId
string

Filter by payout identifier

invoiceId
string

Filter by merchant invoice identifier

Responses
200
400
401
403
404
405
406
409
422
429
500
503
get/transactions/settlement
Request samples
Response samples
application/json
{
  • "currency": "AUD",
  • "items": [
    ],
  • "totalPages": 0,
  • "totalRecords": 0,
  • "platformFeesInclTax": 0,
  • "platformFeesTax": 0,
  • "netAmount": 0,
  • "grossAmount": 0,
  • "payoutSummary": {
    },
  • "created": "2019-08-24T14:15:22Z"
}
Copyright © April Solutions 2023. All right reserved.