QGenda Request Limit API
The Request Limit API from QGenda — 6 operation(s) for request limit.
The Request Limit API from QGenda — 6 operation(s) for request limit.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/qgenda-request-limit-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: QGenda REST Company Request Limit 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: Request Limit
paths:
/v2/requestlimit:
get:
operationId: getRequestlimit
summary: RequestLimit
tags:
- Request Limit
description: 'Returns all request limits that are viewable by the user
Response Object: RequestLimit'
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
'401':
description: Unauthorized
security:
- bearerAuth: []
post:
operationId: postRequestlimit
summary: RequestLimit
tags:
- Request Limit
description: 'Creates a new request limit.
Response Object: RequestLimit'
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: []
/v2/requestlimit/{requestLimitKey}:
put:
operationId: putRequestlimitRequestLimitKey
summary: RequestLimit
tags:
- Request Limit
description: 'Update a request limit.
Response Object: RequestLimit'
parameters:
- name: requestLimitKey
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: []
delete:
operationId: deleteRequestlimitRequestLimitKey
summary: RequestLimit
tags:
- Request Limit
description: Deletes a request limit.
parameters:
- name: requestLimitKey
in: path
required: true
schema:
type: string
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
'401':
description: Unauthorized
security:
- bearerAuth: []
/v2/requestlimit/{requestLimitKey}/taskshift:
post:
operationId: postRequestlimitRequestLimitKeyTaskshift
summary: RequestLimit/TaskShift
tags:
- Request Limit
description: 'Adding task shifts & credit to request limits.
Response Object: RequestLimit'
parameters:
- name: requestLimitKey
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: []
/v2/requestlimit/{requestLimitKey}/taskshift/{taskShiftKey}:
put:
operationId: putRequestlimitRequestLimitKeyTaskshiftTaskShiftKey
summary: RequestLimit/TaskShift
tags:
- Request Limit
description: 'Manage the credit associated to task shifts in request limits.
Response Object: RequestLimit'
parameters:
- name: requestLimitKey
in: path
required: true
schema:
type: string
- name: taskShiftKey
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: []
/v2/requestlimit/{requestLimitKey}/staffquota:
post:
operationId: postRequestlimitRequestLimitKeyStaffquota
summary: RequestLimit/StaffQuota
tags:
- Request Limit
description: 'Manages the staff quota on a request limit.
Response Object: RequestLimit'
parameters:
- name: requestLimitKey
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: []
/v2/requestlimit/{requestLimitKey}/staffquota/{staffid}:
put:
operationId: putRequestlimitRequestLimitKeyStaffquotaStaffid
summary: RequestLimit/StaffQuota
tags:
- Request Limit
description: 'Updates a staff quota for a request limit
Response Object: RequestLimit'
parameters:
- name: requestLimitKey
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>.'