ConnexPay Credit API

The Credit API from ConnexPay — 1 operation(s) for credit.

Operations 1

POST /api/v1/Credit/AvailableCreditReport/{pageNumber}/{pageSize} Get Available Credit Report #

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-credit-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-credit-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ConnexPay Reporting Credit API
  description: REST API for retrieving reporting data. Currently Daily Accounting data only.
  contact:
    name: ConnexPay
    url: https://docs.connexpay.com
  version: v1
servers:
- url: https://reportingapi.connexpay.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Credit
paths:
  /api/v1/Credit/AvailableCreditReport/{pageNumber}/{pageSize}:
    post:
      tags:
      - Credit
      summary: Get Available Credit Report
      operationId: AvailableCreditReport
      parameters:
      - name: pageNumber
        in: path
        description: ''
        required: true
        schema:
          maximum: 2147483647
          minimum: 1
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: path
        description: ''
        required: true
        schema:
          maximum: 25000
          minimum: 1
          type: integer
          format: int32
          default: 10
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AvailableCreditReportRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/AvailableCreditReportRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/AvailableCreditReportRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvailableCreditReportResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    AvailableCreditReport:
      type: object
      properties:
        client:
          description: Unique name assigned to the client by ConnexPay.
          type:
          - string
          - 'null'
        mid:
          description: Unique merchant identifier assigned to the client by ConnexPay.
          type:
          - string
          - 'null'
        date:
          description: Date Time.
          type: string
          format: date-time
        type:
          description: Type of the credit transaction.
          type:
          - string
          - 'null'
        user:
          description: User that performed the credit transaction.
          type:
          - string
          - 'null'
        amount:
          description: Amount of the credit transaction.
          type: number
          format: double
        availableCredit:
          description: Available credit amount as a result of the credit transaction.
          type: number
          format: double
        merchantGatewayGuid:
          description: Unique merchant Guid assigned to the client by ConnexPay.
          type: string
          format: uuid
      additionalProperties: false
    AvailableCreditReportRequest:
      type: object
      properties:
        merchantGuid:
          description: Unique identifier assigned to the merchant by ConnexPay.
          type: string
          format: uuid
        client:
          description: Unique name assigned to the client by ConnexPay.
          type:
          - string
          - 'null'
        timeStampFrom:
          description: Start date for the Report Request.
          type:
          - string
          - 'null'
          format: date-time
        timeStampTo:
          description: End date for the Report Request.
          type:
          - string
          - 'null'
          format: date-time
      additionalProperties: false
    AvailableCreditReportResponse:
      type: object
      properties:
        pageCurrent:
          description: Current Page number.
          type: integer
          format: int32
        pageCurrentResults:
          description: Current Page results.
          type: integer
          format: int32
        pageSize:
          description: Page size.
          type: integer
          format: int32
        pageTotal:
          description: Total number of pages available.
          type: integer
          format: int32
        totalCount:
          description: Count of all items available.
          type: integer
          format: int32
        searchResults:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/AvailableCreditReport'
      additionalProperties: false
    ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
  securitySchemes:
    bearerAuth:
      type: http
      description: JWT Authorization header using the Bearer scheme.
      scheme: bearer
      bearerFormat: JWT