ConnexPay Merchant Flex Funding API

The MerchantFlexFunding API from ConnexPay — 1 operation(s) for merchantflexfunding.

Operations 1

POST /api/v1/MerchantFlexFunding/Funds/Transfer Client Funds Transfer #

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/connexpay-merchantflexfunding-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 email required.

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

OpenAPI Specification

connexpay-merchantflexfunding-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: sales-api Merchant Flex Funding API
  version: '1.0'
servers:
- url: https://sandboxsalesapi.connexpay.com
security:
- sec0: []
tags:
- name: MerchantFlexFunding
paths:
  /api/v1/MerchantFlexFunding/Funds/Transfer:
    post:
      summary: Client Funds Transfer
      description: Use this endpoint to transfer funds between your merchant cash balances within the same Corporate entity.
      operationId: client-funds-transfer
      parameters:
      - name: Content-Type
        in: header
        description: '"application/json"'
        schema:
          type: string
      - name: Authorization
        in: header
        description: 'Token. Eg: "Bearer eHSN5rTBzqDozgAAlN1UlTMVuIT1zSiAZWCo6E..."'
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - TransferredFrom
              - TransferredTo
              - Amount
              properties:
                TransferredFrom:
                  type: string
                  description: The merchant's GUID of the withdrawn account. Value provided by ConnexPay.
                TransferredTo:
                  type: string
                  description: The merchant's GUID of the deposited account. Value provided by ConnexPay.
                Amount:
                  type: number
                  description: Transferred funding amount that will be processed. Maximum transaction and daily funding limits are set by ConnexPay.
                  format: float
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"TransferredFrom\": \"10DAD551-5FB8-456B-BC69-F6D903C93D40\", \n    \"TransferredTo\": \"EBFF36A1-E430-4998-A8C1-18840D6C8D90\", \n    \"Amount\": 100\n}"
              schema:
                type: object
                properties:
                  TransferredFrom:
                    type: string
                    example: 10DAD551-5FB8-456B-BC69-F6D903C93D40
                  TransferredTo:
                    type: string
                    example: EBFF36A1-E430-4998-A8C1-18840D6C8D90
                  Amount:
                    type: integer
                    example: 100
                    default: 0
        '422':
          description: '422'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
        '500':
          description: '500'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      tags:
      - MerchantFlexFunding
components:
  securitySchemes:
    sec0:
      type: oauth2
      flows: {}
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: false
x-readme-fauxas: true