QGenda Credit Allocation API

The Credit Allocation API from QGenda — 2 operation(s) for credit allocation.

Operations 2

GET /v2/CreditAllocation/Quota CreditAllocation/Quota #
PUT /v2/creditallocation/{creditAllocationKey}/quota/{staffId} CreditAllocation/Quota #

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/qgenda-credit-allocation-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

qgenda-credit-allocation-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: QGenda REST Company Credit Allocation API
  version: '2'
  description: QGenda REST API Version 2 — physician scheduling, on-call, provider workforce management, credentialing, and clinical operations for healthcare organizations. Derived faithfully from QGenda's public Postman collection (restapi.qgenda.com). Base URL https://api.qgenda.com/v2. Token-based auth via POST /v2/login; HTTPS TLS 1.2/1.3 only; JSON payloads; BR/GZip compression; OData query support on select resources.
  contact:
    name: QGenda Support
    url: https://www.qgenda.com/
  x-apisjson-derived-from: postman/qgenda-collection.json
servers:
- url: https://api.qgenda.com/v2
  description: Production
security:
- bearerAuth: []
tags:
- name: Credit Allocation
paths:
  /v2/CreditAllocation/Quota:
    get:
      operationId: getCreditAllocationQuota
      summary: CreditAllocation/Quota
      tags:
      - Credit Allocation
      description: 'Returns Quota information for Staff, with a separate response for each staff member

        Returns Staff who are currently skilled for task(s) within the Credit Allocation

        Returns Staff who are still a part of the Credit Allocation but are no longer skilled

        Response Object: CreditAllocation'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/creditallocation/{creditAllocationKey}/quota/{staffId}:
    put:
      operationId: putCreditallocationCreditAllocationKeyQuotaStaffId
      summary: CreditAllocation/Quota
      tags:
      - Credit Allocation
      description: 'Updates Quota information for existing staff associated with the Quota

        Updates Staff who are currently skilled for task(s) within the Credit Allocation

        Updates Staff who are still a part of the Credit Allocation but are no longer skilled

        Response Object: CreditAllocation'
      parameters:
      - name: creditAllocationKey
        in: path
        required: true
        schema:
          type: string
      - name: staffId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Access token returned by POST /v2/login. Send as Authorization: bearer <access_token>.'