Customers Bank Outgoing Payments API

The OutgoingPayments API from Customers Bank — 15 operation(s) for outgoingpayments.

Operations 18

POST /outgoing /outgoing - POST #
GET /outgoing /outgoing - GET #
POST /outgoing/rtp /outgoing/rtp - POST #
GET /outgoing/rtp /outgoing/rtp - GET #
POST /outgoing/fednow /outgoing/fednow - POST #
GET /outgoing/fednow /outgoing/fednow - GET #
GET /outgoing/{id} /outgoing/{id} - GET #
POST /outgoing/{id}/cancel /outgoing/{id}/cancel - POST #
GET /outgoing/rtp/{id} /outgoing/rtp/{id} - GET #
POST /outgoing/rtp/{id}/cancel /outgoing/rtp/{id}/cancel - POST #
GET /outgoing/fednow/{id} /outgoing/fednow/{id} - GET #
POST /outgoing/fednow/{id}/cancel /outgoing/fednow/{id}/cancel - POST #
GET /outgoing/rtp/download /outgoing/rtp/download - GET #
GET /outgoing/fednow/download /outgoing/fednow/download - GET #
POST /outgoing/rtp/{id}/approve /outgoing/rtp/{id}/approve - POST #
POST /outgoing/fednow/{id}/approve /outgoing/fednow/{id}/approve - POST #
POST /outgoing/rtp/{id}/decline /outgoing/rtp/{id}/decline - POST #
POST /outgoing/fednow/{id}/decline /outgoing/fednow/{id}/decline - POST #

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-outgoingpayments-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-outgoingpayments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: InstantPayments Outgoing Payments API
  version: v1
servers:
- url: https://cubi-sandbox-api.customersbank.com/InstantPayments/v1
tags:
- name: OutgoingPayments
paths:
  /outgoing:
    post:
      tags:
      - OutgoingPayments
      summary: /outgoing - POST
      description: "Initiates a new instant payment that will be delivered on either the FedNow or RTP rails.   The rail will be determined \nbased on the receiver bank's rail eligibilty among other factors."
      operationId: post-outgoing
      parameters:
      - name: x-idempotency-key
        in: header
        description: Unique request idenitfier for idempotency.
        required: true
        schema:
          type: string
          format: uuid
        example: 05c6f225-d90e-4449-a280-b3ae9924fdec
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiatePaymentDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
          text/json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiatePaymentDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
          application/*+json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiatePaymentDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
      responses:
        '202':
          description: Accepted
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.PaymentInitiatedDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.PaymentInitiatedDto'
              example:
                id: string
                rail: FedNow
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.PaymentInitiatedDto'
              example:
                id: 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
        '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
    get:
      tags:
      - OutgoingPayments
      summary: /outgoing - GET
      description: Searches for outgoing Instant Payments
      operationId: get-outgoing
      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: status
        in: query
        description: The status to search
        schema:
          $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.OutgoingTransactionStatusDto'
      - 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.Outgoing.OutgoingPaymentDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Outgoing.OutgoingPaymentDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  processDate: string
                  senderAccountNumber: string
                  paymentDate: string
                  deliveryDate: string
                  receiverRoutingNumber: string
                  receiverAccountNumber: string
                  receiverName: string
                  receiverAddress1: string
                  receiverAddress2: string
                  receiverCity: string
                  receiverState: string
                  receiverZip: string
                  receiverCountry: string
                  receiverBankName: string
                  receiverBankAddress1: string
                  receiverBankAddress2: string
                  receiverBankCity: string
                  receiverBankState: string
                  receiverBankZip: string
                  description: string
                  status: Initiated
                  submittedAt: string
                  cancelledAt: string
                  cancelledReason: string
                  completedAt: string
                  confirmationNumber: string
                  rail: FedNow
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Outgoing.OutgoingPaymentDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  processDate: string
                  senderAccountNumber: string
                  paymentDate: string
                  deliveryDate: string
                  receiverRoutingNumber: string
                  receiverAccountNumber: string
                  receiverName: string
                  receiverAddress1: string
                  receiverAddress2: string
                  receiverCity: string
                  receiverState: string
                  receiverZip: string
                  receiverCountry: string
                  receiverBankName: string
                  receiverBankAddress1: string
                  receiverBankAddress2: string
                  receiverBankCity: string
                  receiverBankState: string
                  receiverBankZip: string
                  description: string
                  status: Initiated
                  submittedAt: string
                  cancelledAt: string
                  cancelledReason: string
                  completedAt: 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
  /outgoing/rtp:
    post:
      tags:
      - OutgoingPayments
      summary: /outgoing/rtp - POST
      description: 'Initiates a payment on the RTP rail.  This method exists to allow for direct RTP initiation, however,

        in most cases it''s prefferable to use the rail agonistic POST /outgoing api to allow for rail flexibity

        when sending to the receiver bank.'
      operationId: post-outgoing-rtp
      parameters:
      - name: x-idempotency-key
        in: header
        description: Unique request idenitfier for idempotency.
        required: true
        schema:
          type: string
          format: uuid
        example: edfdcaaa-01c8-48d2-b9b8-5f1d9d5a3153
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiateRtpDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
          text/json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiateRtpDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
          application/*+json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiateRtpDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
      responses:
        '202':
          description: Accepted
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.Common.WebApi.Mediatr.Validation.IdentifierContainer_System.Guid'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.WebApi.Mediatr.Validation.IdentifierContainer_System.Guid'
              example:
                id: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.WebApi.Mediatr.Validation.IdentifierContainer_System.Guid'
              example:
                id: 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
        '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
    get:
      tags:
      - OutgoingPayments
      summary: /outgoing/rtp - GET
      description: Searches for outgoing RTPs
      operationId: get-outgoing-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: status
        in: query
        description: The status to search
        schema:
          $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.OutgoingTransactionStatusDto'
      - 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.Outgoing.OutgoingRtpDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Outgoing.OutgoingRtpDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  processDate: string
                  senderAccountNumber: string
                  paymentDate: string
                  deliveryDate: string
                  receiverRoutingNumber: string
                  receiverAccountNumber: string
                  receiverName: string
                  receiverAddress1: string
                  receiverAddress2: string
                  receiverCity: string
                  receiverState: string
                  receiverZip: string
                  receiverCountry: string
                  receiverBankName: string
                  receiverBankAddress1: string
                  receiverBankAddress2: string
                  receiverBankCity: string
                  receiverBankState: string
                  receiverBankZip: string
                  description: string
                  status: Initiated
                  submittedAt: string
                  cancelledAt: string
                  cancelledReason: string
                  completedAt: string
                  confirmationNumber: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.InstantPayments.WebApi.Dto.Outgoing.OutgoingRtpDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: string
                  amount: 0
                  processDate: string
                  senderAccountNumber: string
                  paymentDate: string
                  deliveryDate: string
                  receiverRoutingNumber: string
                  receiverAccountNumber: string
                  receiverName: string
                  receiverAddress1: string
                  receiverAddress2: string
                  receiverCity: string
                  receiverState: string
                  receiverZip: string
                  receiverCountry: string
                  receiverBankName: string
                  receiverBankAddress1: string
                  receiverBankAddress2: string
                  receiverBankCity: string
                  receiverBankState: string
                  receiverBankZip: string
                  description: string
                  status: Initiated
                  submittedAt: string
                  cancelledAt: string
                  cancelledReason: string
                  completedAt: 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
  /outgoing/fednow:
    post:
      tags:
      - OutgoingPayments
      summary: /outgoing/fednow - POST
      description: 'Initiates a payment on the FedNow rail.  This method exists to allow for direct FedNow initiation, however,

        in most cases it''s prefferable to use the rail agonistic POST /outgoing api to allow for rail flexibity

        when sending to the receiver bank.'
      operationId: post-outgoing-fednow
      parameters:
      - name: x-idempotency-key
        in: header
        description: Unique request idenitfier for idempotency.
        required: true
        schema:
          type: string
          format: uuid
        example: 1ccc8be2-1719-4a62-a135-41bbe2c6a10a
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiateFedNowDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
          text/json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiateFedNowDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
          application/*+json:
            schema:
              $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.Initiate.InitiateFedNowDto'
            example:
              amount: 0
              processDate: '2025-04-02T05:00:00+00:00'
              senderAccountNumber: string
              receiverRoutingNumber: string
              receiverAccountNumber: string
              receiverName: string
              receiverAddress1: string
              receiverAddress2: string
              receiverCity: string
              receiverState: string
              receiverZip: string
              receiverCountry: US
              description: string
      responses:
        '202':
          description: Accepted
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.Common.WebApi.Mediatr.Validation.IdentifierContainer_System.Guid'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.WebApi.Mediatr.Validation.IdentifierContainer_System.Guid'
              example:
                id: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.WebApi.Mediatr.Validation.IdentifierContainer_System.Guid'
              example:
                id: 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
        '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
    get:
      tags:
      - OutgoingPayments
      summary: /outgoing/fednow - GET
      description: Searches for outgoing FedNow payments
      operationId: get-outgoing-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: status
        in: query
        description: The status to search
        schema:
          $ref: '#/components/schemas/Cubi.InstantPayments.WebApi.Dto.Outgoing.OutgoingTransactionStatusDto'
      - 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

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