Customers Bank Incoming Payments API

The IncomingPayments API from Customers Bank — 8 operation(s) for incomingpayments.

Operations 8

GET /incoming/{id} /incoming/{id} - GET #
GET /incoming/fednow/{id} /incoming/fednow/{id} - GET #
GET /incoming/rtp/{id} /incoming/rtp/{id} - GET #
GET /incoming /incoming - GET #
GET /incoming/rtp /incoming/rtp - GET #
GET /incoming/fednow /incoming/fednow - GET #
GET /incoming/fednow/download /incoming/fednow/download - GET #
GET /incoming/rtp/download /incoming/rtp/download - GET #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/customers-bank-incomingpayments-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

customers-bank-incomingpayments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: InstantPayments Incoming Payments API
  version: v1
servers:
- url: https://cubi-sandbox-api.customersbank.com/InstantPayments/v1
tags:
- name: IncomingPayments
paths:
  /incoming/{id}:
    get:
      tags:
      - IncomingPayments
      summary: /incoming/{id} - GET
      description: Retrieves an existing incoming instant payment
      operationId: get-incoming-id
      parameters:
      - name: id
        in: path
        description: The ID of the FEDNOW payment to get
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingPaymentDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingPaymentDto'
              example:
                id: string
                amount: 0
                accountNumber: string
                description: string
                referenceId: string
                isMemoPosted: true
                createdAt: string
                status: Initiated
                paymentDate: string
                deliveryDate: string
                notes: string
                senderName: string
                senderAccountNumber: string
                senderRoutingNumber: string
                senderAddress1: string
                senderAddress2: string
                senderCity: string
                senderState: string
                senderZip: string
                senderCountry: string
                senderBankName: string
                senderBankAddress1: string
                senderBankAddress2: string
                senderBankCity: string
                senderBankState: string
                senderBankZip: string
                confirmationNumber: string
                rail: FedNow
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingPaymentDto'
              example:
                id: string
                amount: 0
                accountNumber: string
                description: string
                referenceId: string
                isMemoPosted: true
                createdAt: string
                status: Initiated
                paymentDate: string
                deliveryDate: string
                notes: string
                senderName: string
                senderAccountNumber: string
                senderRoutingNumber: string
                senderAddress1: string
                senderAddress2: string
                senderCity: string
                senderState: string
                senderZip: string
                senderCountry: string
                senderBankName: string
                senderBankAddress1: string
                senderBankAddress2: string
                senderBankCity: string
                senderBankState: string
                senderBankZip: string
                confirmationNumber: string
                rail: FedNow
        '400':
          description: BadRequest
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.1
                title: One or more validation errors occurred.
                status: 400
                traceId: string
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.2
                title: Unauthorized
                status: 401
                traceId: string
        '403':
          description: Forbidden
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.4
                title: Forbidden
                status: 403
                traceId: string
        '404':
          description: NotFound
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.5
                title: Not Found
                status: 404
                traceId: string
        '422':
          description: UnprocessableEntity
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc4918#section-11.2
                title: Unprocessable Entity
                status: 422
                traceId: string
        '500':
          description: InternalServerError
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.6.1
                title: An error occurred while processing your request.
                status: 500
                traceId: string
  /incoming/fednow/{id}:
    get:
      tags:
      - IncomingPayments
      summary: /incoming/fednow/{id} - GET
      description: Retrieves an existing incoming FEDNOW payment
      operationId: get-incoming-fednow-id
      parameters:
      - name: id
        in: path
        description: The ID of the FEDNOW payment to get
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingFedNowDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingFedNowDto'
              example:
                id: string
                amount: 0
                accountNumber: string
                description: string
                referenceId: string
                isMemoPosted: true
                createdAt: string
                status: Initiated
                paymentDate: string
                deliveryDate: string
                notes: string
                senderName: string
                senderAccountNumber: string
                senderRoutingNumber: string
                senderAddress1: string
                senderAddress2: string
                senderCity: string
                senderState: string
                senderZip: string
                senderCountry: string
                senderBankName: string
                senderBankAddress1: string
                senderBankAddress2: string
                senderBankCity: string
                senderBankState: string
                senderBankZip: string
                confirmationNumber: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingFedNowDto'
              example:
                id: string
                amount: 0
                accountNumber: string
                description: string
                referenceId: string
                isMemoPosted: true
                createdAt: string
                status: Initiated
                paymentDate: string
                deliveryDate: string
                notes: string
                senderName: string
                senderAccountNumber: string
                senderRoutingNumber: string
                senderAddress1: string
                senderAddress2: string
                senderCity: string
                senderState: string
                senderZip: string
                senderCountry: string
                senderBankName: string
                senderBankAddress1: string
                senderBankAddress2: string
                senderBankCity: string
                senderBankState: string
                senderBankZip: string
                confirmationNumber: string
        '400':
          description: BadRequest
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.1
                title: One or more validation errors occurred.
                status: 400
                traceId: string
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.2
                title: Unauthorized
                status: 401
                traceId: string
        '403':
          description: Forbidden
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.4
                title: Forbidden
                status: 403
                traceId: string
        '404':
          description: NotFound
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.5
                title: Not Found
                status: 404
                traceId: string
        '422':
          description: UnprocessableEntity
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc4918#section-11.2
                title: Unprocessable Entity
                status: 422
                traceId: string
        '500':
          description: InternalServerError
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.6.1
                title: An error occurred while processing your request.
                status: 500
                traceId: string
  /incoming/rtp/{id}:
    get:
      tags:
      - IncomingPayments
      summary: /incoming/rtp/{id} - GET
      description: Retrieves an existing incoming RTP
      operationId: get-incoming-rtp-id
      parameters:
      - name: id
        in: path
        description: The ID of the RTP to get
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingRtpDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingRtpDto'
              example:
                id: string
                amount: 0
                accountNumber: string
                description: string
                referenceId: string
                isMemoPosted: true
                createdAt: string
                status: Initiated
                paymentDate: string
                deliveryDate: string
                notes: string
                senderName: string
                senderAccountNumber: string
                senderRoutingNumber: string
                senderAddress1: string
                senderAddress2: string
                senderCity: string
                senderState: string
                senderZip: string
                senderCountry: string
                senderBankName: string
                senderBankAddress1: string
                senderBankAddress2: string
                senderBankCity: string
                senderBankState: string
                senderBankZip: string
                confirmationNumber: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingRtpDto'
              example:
                id: string
                amount: 0
                accountNumber: string
                description: string
                referenceId: string
                isMemoPosted: true
                createdAt: string
                status: Initiated
                paymentDate: string
                deliveryDate: string
                notes: string
                senderName: string
                senderAccountNumber: string
                senderRoutingNumber: string
                senderAddress1: string
                senderAddress2: string
                senderCity: string
                senderState: string
                senderZip: string
                senderCountry: string
                senderBankName: string
                senderBankAddress1: string
                senderBankAddress2: string
                senderBankCity: string
                senderBankState: string
                senderBankZip: string
                confirmationNumber: string
        '400':
          description: BadRequest
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.1
                title: One or more validation errors occurred.
                status: 400
                traceId: string
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.2
                title: Unauthorized
                status: 401
                traceId: string
        '403':
          description: Forbidden
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.4
                title: Forbidden
                status: 403
                traceId: string
        '404':
          description: NotFound
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.5
                title: Not Found
                status: 404
                traceId: string
        '422':
          description: UnprocessableEntity
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc4918#section-11.2
                title: Unprocessable Entity
                status: 422
                traceId: string
        '500':
          description: InternalServerError
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.6.1
                title: An error occurred while processing your request.
                status: 500
                traceId: string
  /incoming:
    get:
      tags:
      - IncomingPayments
      summary: /incoming - GET
      description: Searches for incoming instant payments
      operationId: get-incoming
      parameters:
      - name: fromDate
        in: query
        description: The start date from which to search
        schema:
          type: string
          format: date-time
      - name: toDate
        in: query
        description: The end date for which to search
        schema:
          type: string
          format: date-time
      - name: accountId
        in: query
        description: The account ID for which to search
        schema:
          type: string
          format: uuid
      - name: paginateResults
        in: query
        schema:
          type: boolean
      - name: page
        in: query
        schema:
          type: integer
          format: int32
      - name: perPage
        in: query
        schema:
          type: integer
          format: int32
      - name: sortOn
        in: query
        schema:
          type: string
      - name: sortAscending
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingPaymentDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingPaymentDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  accountNumber: string
                  description: string
                  referenceId: string
                  isMemoPosted: true
                  createdAt: string
                  status: Initiated
                  paymentDate: string
                  deliveryDate: string
                  notes: string
                  senderName: string
                  senderAccountNumber: string
                  senderRoutingNumber: string
                  senderAddress1: string
                  senderAddress2: string
                  senderCity: string
                  senderState: string
                  senderZip: string
                  senderCountry: string
                  senderBankName: string
                  senderBankAddress1: string
                  senderBankAddress2: string
                  senderBankCity: string
                  senderBankState: string
                  senderBankZip: string
                  confirmationNumber: string
                  rail: FedNow
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingPaymentDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  accountNumber: string
                  description: string
                  referenceId: string
                  isMemoPosted: true
                  createdAt: string
                  status: Initiated
                  paymentDate: string
                  deliveryDate: string
                  notes: string
                  senderName: string
                  senderAccountNumber: string
                  senderRoutingNumber: string
                  senderAddress1: string
                  senderAddress2: string
                  senderCity: string
                  senderState: string
                  senderZip: string
                  senderCountry: string
                  senderBankName: string
                  senderBankAddress1: string
                  senderBankAddress2: string
                  senderBankCity: string
                  senderBankState: string
                  senderBankZip: string
                  confirmationNumber: string
                  rail: FedNow
        '400':
          description: BadRequest
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.1
                title: One or more validation errors occurred.
                status: 400
                traceId: string
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.2
                title: Unauthorized
                status: 401
                traceId: string
        '403':
          description: Forbidden
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.4
                title: Forbidden
                status: 403
                traceId: string
        '404':
          description: NotFound
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.5
                title: Not Found
                status: 404
                traceId: string
        '422':
          description: UnprocessableEntity
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc4918#section-11.2
                title: Unprocessable Entity
                status: 422
                traceId: string
        '500':
          description: InternalServerError
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.6.1
                title: An error occurred while processing your request.
                status: 500
                traceId: string
  /incoming/rtp:
    get:
      tags:
      - IncomingPayments
      summary: /incoming/rtp - GET
      description: Searches for incoming RTPs
      operationId: get-incoming-rtp
      parameters:
      - name: fromDate
        in: query
        description: The start date from which to search
        schema:
          type: string
          format: date-time
      - name: toDate
        in: query
        description: The end date for which to search
        schema:
          type: string
          format: date-time
      - name: accountId
        in: query
        description: The account ID for which to search
        schema:
          type: string
          format: uuid
      - name: paginateResults
        in: query
        schema:
          type: boolean
      - name: page
        in: query
        schema:
          type: integer
          format: int32
      - name: perPage
        in: query
        schema:
          type: integer
          format: int32
      - name: sortOn
        in: query
        schema:
          type: string
      - name: sortAscending
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingRtpDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingRtpDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  accountNumber: string
                  description: string
                  referenceId: string
                  isMemoPosted: true
                  createdAt: string
                  status: Initiated
                  paymentDate: string
                  deliveryDate: string
                  notes: string
                  senderName: string
                  senderAccountNumber: string
                  senderRoutingNumber: string
                  senderAddress1: string
                  senderAddress2: string
                  senderCity: string
                  senderState: string
                  senderZip: string
                  senderCountry: string
                  senderBankName: string
                  senderBankAddress1: string
                  senderBankAddress2: string
                  senderBankCity: string
                  senderBankState: string
                  senderBankZip: string
                  confirmationNumber: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingRtpDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  accountNumber: string
                  description: string
                  referenceId: string
                  isMemoPosted: true
                  createdAt: string
                  status: Initiated
                  paymentDate: string
                  deliveryDate: string
                  notes: string
                  senderName: string
                  senderAccountNumber: string
                  senderRoutingNumber: string
                  senderAddress1: string
                  senderAddress2: string
                  senderCity: string
                  senderState: string
                  senderZip: string
                  senderCountry: string
                  senderBankName: string
                  senderBankAddress1: string
                  senderBankAddress2: string
                  senderBankCity: string
                  senderBankState: string
                  senderBankZip: string
                  confirmationNumber: string
        '400':
          description: BadRequest
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.1
                title: One or more validation errors occurred.
                status: 400
                traceId: string
        '401':
          description: Unauthorized
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.2
                title: Unauthorized
                status: 401
                traceId: string
        '403':
          description: Forbidden
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.4
                title: Forbidden
                status: 403
                traceId: string
        '404':
          description: NotFound
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.5.5
                title: Not Found
                status: 404
                traceId: string
        '422':
          description: UnprocessableEntity
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ValidationProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc4918#section-11.2
                title: Unprocessable Entity
                status: 422
                traceId: string
        '500':
          description: InternalServerError
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
              example:
                type: https://tools.ietf.org/html/rfc9110#section-15.6.1
                title: An error occurred while processing your request.
                status: 500
                traceId: string
  /incoming/fednow:
    get:
      tags:
      - IncomingPayments
      summary: /incoming/fednow - GET
      description: Searches for incoming FedNow payments
      operationId: get-incoming-fednow
      parameters:
      - name: fromDate
        in: query
        description: The start date from which to search
        schema:
          type: string
          format: date-time
      - name: toDate
        in: query
        description: The end date for which to search
        schema:
          type: string
          format: date-time
      - name: accountId
        in: query
        description: The account ID for which to search
        schema:
          type: string
          format: uuid
      - name: paginateResults
        in: query
        schema:
          type: boolean
      - name: page
        in: query
        schema:
          type: integer
          format: int32
      - name: perPage
        in: query
        schema:
          type: integer
          format: int32
      - name: sortOn
        in: query
        schema:
          type: string
      - name: sortAscending
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingFedNowDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Incoming.IncomingFedNowDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  accountNumber: string
                  description: string
                  referenceId: string
                  isMemoPosted: tr

# --- truncated at 32 KB (64 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/customers-bank/refs/heads/main/openapi/customers-bank-incomingpayments-api-openapi.yml