Customers Bank Book Transfers API

The BookTransfers API from Customers Bank — 6 operation(s) for booktransfers.

Operations 7

POST / / - POST #
GET / /?id={id} - GET #
GET /{id} /{id} - GET #
POST /{id}/approve /{id}/approve - POST #
POST /{id}/decline /{id}/decline - POST #
GET /purposeCodes /purposeCodes - GET #
GET /download /download?id={id} - 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-booktransfers-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-booktransfers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Book Transfers API
  version: v1
servers:
- url: https://cubi-sandbox-api.customersbank.com/transfers/v1
tags:
- name: BookTransfers
paths:
  /:
    post:
      tags:
      - BookTransfers
      summary: / - POST
      operationId: post
      parameters:
      - name: x-idempotency-key
        in: header
        description: Unique request idenitfier for idempotency.
        required: true
        schema:
          type: string
          format: uuid
        example: d13e5a3f-2ddb-40b7-88b0-b3b0901aa76e
      requestBody:
        description: Transfer initiation payload
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.InitiateBookTransferDto'
            example:
              fromAccountId: string
              toAccountId: string
              amount: 0
              internalMemo: string
              publicMemo: string
              coreMemo: string
              purposeCode: string
              purposeDescription: string
              processDate: string
          text/json:
            schema:
              $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.InitiateBookTransferDto'
            example:
              fromAccountId: string
              toAccountId: string
              amount: 0
              internalMemo: string
              publicMemo: string
              coreMemo: string
              purposeCode: string
              purposeDescription: string
              processDate: string
          application/*+json:
            schema:
              $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.InitiateBookTransferDto'
            example:
              fromAccountId: string
              toAccountId: string
              amount: 0
              internalMemo: string
              publicMemo: string
              coreMemo: string
              purposeCode: string
              purposeDescription: string
              processDate: string
      responses:
        '202':
          description: id
          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
        '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
    get:
      tags:
      - BookTransfers
      summary: /?id={id} - GET
      operationId: get-id-id
      parameters:
      - name: id
        in: query
        description: The account id to search transactions for
        required: true
        schema:
          type: string
          format: uuid
          example: 00000000-0000-0000-0000-000000000000
        example: 00000000-0000-0000-0000-000000000000
      - name: fromDate
        in: query
        description: Optional start date from which to search
        schema:
          type: string
          format: date-time
          example: '1980-01-01T12:00:00+00:00'
        example: '1980-01-01T12:00:00+00:00'
      - name: toDate
        in: query
        description: Optional end date for which to search
        schema:
          type: string
          format: date-time
          example: '1980-01-02T12:00:00+00:00'
        example: '1980-01-02T12:00:00+00:00'
      - name: inStatus
        in: query
        description: Optional list of transfer statuses to filter on
        schema:
          type: array
          items:
            $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferStatus'
      - 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.Transfers.WebApi.Dto.BookTransfers.BookTransferDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: 00000000-0000-0000-0000-000000000000
                  accountId: 00000000-0000-0000-0000-000000000000
                  accountName: string
                  counterParty: string
                  counterPartyAccountId: 00000000-0000-0000-0000-000000000000
                  counterPartyAccountName: string
                  sendingPartner: string
                  sendingAccount: string
                  sendingAccountNumberLast4Digits: string
                  receivingPartner: string
                  receivingAccount: string
                  receivingAccountNumberLast4Digits: string
                  amount: 0
                  transactionType: Send
                  internalMemo: string
                  publicMemo: string
                  coreMemo: string
                  purposeCode: string
                  purposeDescription: string
                  processDate: string
                  status: ApprovalRequired
                  declineReason: string
                  initiatingUserId: string
                  initiatingUserName: string
                  initiatingUserEmail: string
                  approvalUserId: string
                  approvalUserName: string
                  approvalUserEmail: string
                  approvedAt: string
                  completedAt: string
                  sourceType: Api
                  createdAt: string
                  lastModifiedAt: string
                  confirmationNumber: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Common.Abstractions.Paginated_Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferDto'
              example:
                pageSize: 0
                pageOffset: 0
                totalPages: 0
                totalItemCount: 0
                items:
                - id: 00000000-0000-0000-0000-000000000000
                  accountId: 00000000-0000-0000-0000-000000000000
                  accountName: string
                  counterParty: string
                  counterPartyAccountId: 00000000-0000-0000-0000-000000000000
                  counterPartyAccountName: string
                  sendingPartner: string
                  sendingAccount: string
                  sendingAccountNumberLast4Digits: string
                  receivingPartner: string
                  receivingAccount: string
                  receivingAccountNumberLast4Digits: string
                  amount: 0
                  transactionType: Send
                  internalMemo: string
                  publicMemo: string
                  coreMemo: string
                  purposeCode: string
                  purposeDescription: string
                  processDate: string
                  status: ApprovalRequired
                  declineReason: string
                  initiatingUserId: string
                  initiatingUserName: string
                  initiatingUserEmail: string
                  approvalUserId: string
                  approvalUserName: string
                  approvalUserEmail: string
                  approvedAt: string
                  completedAt: string
                  sourceType: Api
                  createdAt: string
                  lastModifiedAt: 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
        '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
  /{id}:
    get:
      tags:
      - BookTransfers
      summary: /{id} - GET
      operationId: get-id
      parameters:
      - name: id
        in: path
        description: The id of the book transfer
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferDto'
              example:
                id: 00000000-0000-0000-0000-000000000000
                accountId: 00000000-0000-0000-0000-000000000000
                accountName: string
                counterParty: string
                counterPartyAccountId: 00000000-0000-0000-0000-000000000000
                counterPartyAccountName: string
                sendingPartner: string
                sendingAccount: string
                sendingAccountNumberLast4Digits: string
                receivingPartner: string
                receivingAccount: string
                receivingAccountNumberLast4Digits: string
                amount: 0
                transactionType: Send
                internalMemo: string
                publicMemo: string
                coreMemo: string
                purposeCode: string
                purposeDescription: string
                processDate: string
                status: ApprovalRequired
                declineReason: string
                initiatingUserId: string
                initiatingUserName: string
                initiatingUserEmail: string
                approvalUserId: string
                approvalUserName: string
                approvalUserEmail: string
                approvedAt: string
                completedAt: string
                sourceType: Api
                createdAt: string
                lastModifiedAt: string
                confirmationNumber: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferDto'
              example:
                id: 00000000-0000-0000-0000-000000000000
                accountId: 00000000-0000-0000-0000-000000000000
                accountName: string
                counterParty: string
                counterPartyAccountId: 00000000-0000-0000-0000-000000000000
                counterPartyAccountName: string
                sendingPartner: string
                sendingAccount: string
                sendingAccountNumberLast4Digits: string
                receivingPartner: string
                receivingAccount: string
                receivingAccountNumberLast4Digits: string
                amount: 0
                transactionType: Send
                internalMemo: string
                publicMemo: string
                coreMemo: string
                purposeCode: string
                purposeDescription: string
                processDate: string
                status: ApprovalRequired
                declineReason: string
                initiatingUserId: string
                initiatingUserName: string
                initiatingUserEmail: string
                approvalUserId: string
                approvalUserName: string
                approvalUserEmail: string
                approvedAt: string
                completedAt: string
                sourceType: Api
                createdAt: string
                lastModifiedAt: 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
  /{id}/approve:
    post:
      tags:
      - BookTransfers
      summary: /{id}/approve - POST
      operationId: post-id-approve
      parameters:
      - name: id
        in: path
        description: The id of the book transfer entry to be approved
        required: true
        schema:
          type: string
          format: uuid
      - name: x-idempotency-key
        in: header
        description: Unique request idenitfier for idempotency.
        required: true
        schema:
          type: string
          format: uuid
        example: 6eb4cec4-4a1d-45a9-ae58-3196bd1049f8
      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
        '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
  /{id}/decline:
    post:
      tags:
      - BookTransfers
      summary: /{id}/decline - POST
      operationId: post-id-decline
      parameters:
      - name: id
        in: path
        description: The id of the book transfer entry to be declined
        required: true
        schema:
          type: string
          format: uuid
      - name: x-idempotency-key
        in: header
        description: Unique request idenitfier for idempotency.
        required: true
        schema:
          type: string
          format: uuid
        example: e04a5f1f-9c51-4778-8e50-df20f9d5412e
      requestBody:
        description: Contains IdempotencyKey
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.DeclineBookTransferDto'
            example:
              reason: string
          text/json:
            schema:
              $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.DeclineBookTransferDto'
            example:
              reason: string
          application/*+json:
            schema:
              $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.DeclineBookTransferDto'
            example:
              reason: 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
        '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
  /purposeCodes:
    get:
      tags:
      - BookTransfers
      summary: /purposeCodes - GET
      operationId: get-purposecodes
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.PurposeCodesDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.PurposeCodesDto'
              example:
                purposeCodes:
                - purpose: string
                  code: string
                  description: string
            text/json:
              schema:
                $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.PurposeCodesDto'
              example:
                purposeCodes:
                - purpose: string
                  code: string
                  description: 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
        '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
  /download:
    get:
      tags:
      - BookTransfers
      summary: /download?id={id} - GET
      operationId: get-download-id-id
      parameters:
      - name: id
        in: query
        description: The account id to search transactions for
        required: true
        schema:
          type: string
          format: uuid
          example: 00000000-0000-0000-0000-000000000000
        example: 00000000-0000-0000-0000-000000000000
      - name: fromDate
        in: query
        description: Optional start date from which to search
        schema:
          type: string
          format: date-time
          example: '1980-01-01T12:00:00+00:00'
        example: '1980-01-01T12:00:00+00:00'
      - name: toDate
        in: query
        description: Optional end date for which to search
        schema:
          type: string
          format: date-time
          example: '1980-01-02T12:00:00+00:00'
        example: '1980-01-02T12:00:00+00:00'
      - name: inStatus
        in: query
        description: Optional list of transfer statuses to filter on
        schema:
          type: array
          items:
            $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferStatus'
      - 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:
                type: array
                items:
                  $ref: '#/components/schemas/Cubi.Transfers.WebApi.Dto.BookTransfers.BookTransferDto'
              examples:
                default:
                  value: null
            application/json:
              schema:
                type: array
            

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