---
title: "List the daily funding summaries"
method: GET
path: "/fundings/funding-summaries"
tags: ["Endpoints"]
---

# List the daily funding summaries

`GET /fundings/funding-summaries`

Return a funding summary which contains a combined total of all fundings in the given date range,
as well as daily summaries for the days within the given date range, 
restricted by your allianceCode, partnerCode or merchant ID (as appropriate).

## Query parameters

- `fundedAfter` string, date
- `fundedBefore` string, date
- `limit` integer — Number of elements to be returned in a single query. Can be used for page/offset or cursor based pagination
- `offset` integer — Starting point to start retrieving the elements from. It is "0" based i.e. value "0" signifies the first page. This can be used with "limit". Can be used for page/offset based pagination.

## Headers

- `Partner-Code` string
- `Merchant-Id` string

## Response `200`

OK

- FundingSummary — A daily summary for fundings for a given merchant. Shows total value of all fundings for a given day and currency.
  - `combined` object
    - `merchant` object — A merchant is the business entity that the transaction was performed at.
      - `id` string — External merchant id provided by client (if merchant ids have been pre allocated) or generated by our systems during merchant boarding.
      - `allianceCode` string, nullable — An alliance is typically an organization holding an acquiring licence issued by card schemes (like VISA, MasterCard etc). This code is assigned by us.
      - `partnerCode` string, nullable — Partners are typically companies (such as Payment Facilitators, Independent Software Vendors, Independent Sale Organisations) who can contract merchants for card acceptance but they don't hold an acquiring licence so must always be authorized by an Alliance.
    - `amountTransacted` string — The total gross value for all transactions in the funding summary. Typically to 2 decimal places.
    - `amountFunded` string — The net value of all records in the funding summary (gross value minus any fees, charges or refunds). Typically to 2 decimal places.
    - `currencyCode` string, nullable — The currency used for the amounts in the summary.
  - `daily` object[]
    - `day` string, date — The day of records that the summarised data includes, for example `2022-02-15` would mean that the entry includes all fundings **funded** on the 15th February 2022.
    - `amountTransacted` string — The total value for all transactions in the funding summary. Typically to 2 decimal places.
    - `amountFunded` string — The net value of all related transactions minus any fees, refunds or charges. Typically to 2 decimal places.
    - `_links` object — HAL-style links to other related resources within our APIs
      - `fundings` object
        - `href` string

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal server error

---

[API](https://skmtc.net/fiserv/apis/acquirer-profile-in-design.md) · [All operations](https://skmtc.net/fiserv/apis/acquirer-profile-in-design/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fiserv/acquirer-profile-in-design/revisions/dd7ef6ce81a1/schema)
