QGenda Location API

The Location API from QGenda — 18 operation(s) for location.

Operations 25

GET /v2/location Location #
POST /v2/location Location #
PUT /v2/location/{locationId} Location #
DELETE /v2/location/{locationId} Location #
GET /v2/credentialing/locations Credentialing/Location #
POST /v2/credentialing/location Credentialing/Location #
PUT /v2/credentialing/location/{locationId} Credentialing/Location/LocationId #
PUT /v2/credentialing/location/contacts/{contactKey}/location/{locationId}/ Credentialing/Location/Contacts #
DELETE /v2/credentialing/location/contacts/{contactKey}/location/{locationId}/ Credentialing/Location/Contacts #
GET /v2/location/{locationId}/staff Location/Staff #
POST /v2/location/{locationId}/staff Location/Staff #
POST /v2/location/{locationId}/staff/{staffId}/FTE Location/Staff/FTE #
POST /v2/location/{locationId}/staff/{staffId}/tag Location/Staff/Tag #
DELETE /v2/location/{locationId}/staff/{staffId}/tag Location/Staff/Tag #
PUT /v2/location/{locationId}/staff/{staffId} Location/Staff #
DELETE /v2/location/{locationId}/staff/{staffId} Location/Staff #
POST /v2/Credentialing/Locations/Providers Credentialing/Locations/Providers #
PUT /v2/credentialing/locations/{locationId}/staff/{staffId} Credentialing/Locations/Staff #
DELETE /v2/location/{locationId}/staff/{staffId}/credential Location/Staff/Credential #
GET /v2/location/{locationId}/tasks Location/Tasks #
POST /v2/location/{locationId}/task Location/Task #
PUT /v2/location/{locationId}/task/ Location/Task #
DELETE /v2/location/{locationId}/task/{taskId} Location/Task #
POST /v2/location/{locationId}/tag Location/Tag #
DELETE /v2/location/{locationId}/tag Location/Tag #

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-location-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-location-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: QGenda REST Company Location 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: Location
paths:
  /v2/location:
    get:
      operationId: getLocation
      summary: Location
      tags:
      - Location
      description: 'Returns all locations the API user has access to, or can be filtered by company key.

        Response Object: Array of Location'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
    post:
      operationId: postLocation
      summary: Location
      tags:
      - Location
      description: 'Creates a new location

        Response Object: Location'
      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/location/{locationId}:
    put:
      operationId: putLocationLocationId
      summary: Location
      tags:
      - Location
      description: 'Updates a location

        Response Object: Location'
      parameters:
      - name: locationId
        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: deleteLocationLocationId
      summary: Location
      tags:
      - Location
      description: 'Deletes a location

        Returns: A single Location object, in JSON format.'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/credentialing/locations:
    get:
      operationId: getCredentialingLocations
      summary: Credentialing/Location
      tags:
      - Location
      description: 'Returns Credentialing Locations the API user has access to along with associated details, and can be filtered by Location ID.

        Response Object: CredentialingLocation'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/credentialing/location:
    post:
      operationId: postCredentialingLocation
      summary: Credentialing/Location
      tags:
      - Location
      description: 'Creates a new Credentialing location

        Response Object: CredentialingLocation'
      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/credentialing/location/{locationId}:
    put:
      operationId: putCredentialingLocationLocationId
      summary: Credentialing/Location/LocationId
      tags:
      - Location
      description: 'Updates an existing Credentialing location

        Response Object: CredentialingLocation'
      parameters:
      - name: locationId
        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/credentialing/location/contacts/{contactKey}/location/{locationId}/:
    put:
      operationId: putCredentialingLocationContactsContactKeyLocationLocationId
      summary: Credentialing/Location/Contacts
      tags:
      - Location
      description: 'Associates existing Contacts to existing Locations within Credentialing

        Response: 200 success'
      parameters:
      - name: contactKey
        in: path
        required: true
        schema:
          type: string
      - name: locationId
        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: deleteCredentialingLocationContactsContactKeyLocationLocationId
      summary: Credentialing/Location/Contacts
      tags:
      - Location
      description: 'Unlinks a Contact from a Location within Credentialing

        Response: 200 success'
      parameters:
      - name: contactKey
        in: path
        required: true
        schema:
          type: string
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/location/{locationId}/staff:
    get:
      operationId: getLocationLocationIdStaff
      summary: Location/Staff
      tags:
      - Location
      description: 'Returns all staff members at a particular location.

        If Workforce Credentialing Connection is enabled, Staff member Credentialing information is returned in addition to the Workforce information.

        Response Object: Array of StaffLocation'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
    post:
      operationId: postLocationLocationIdStaff
      summary: Location/Staff
      tags:
      - Location
      description: 'Associates a staff member to a location.

        If Workforce Credentialing Connection is enabled, the Staff member is added to the location in both Workforce and Credentialing.

        Response Object: StaffLocation'
      parameters:
      - name: locationId
        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/location/{locationId}/staff/{staffId}/FTE:
    post:
      operationId: postLocationLocationIdStaffStaffIdFTE
      summary: Location/Staff/FTE
      tags:
      - Location
      description: 'Applies an FTE value to a staff member at a location as of an effective start date.

        Response Object: StaffLocation object with an FTE array for the newly created FTE/effective range for the Staff'
      parameters:
      - name: locationId
        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: []
  /v2/location/{locationId}/staff/{staffId}/tag:
    post:
      operationId: postLocationLocationIdStaffStaffIdTag
      summary: Location/Staff/Tag
      tags:
      - Location
      description: 'Assign a staff-location tag to a staff member at a location

        Response Object: StaffLocation'
      parameters:
      - name: locationId
        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: []
    delete:
      operationId: deleteLocationLocationIdStaffStaffIdTag
      summary: Location/Staff/Tag
      tags:
      - Location
      description: 'Delete a staff-location tag from a staff member at a location

        Returns:A message indicating the amount of tag associations removed from the specified staff at the specified location'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      - name: staffId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/location/{locationId}/staff/{staffId}:
    put:
      operationId: putLocationLocationIdStaffStaffId
      summary: Location/Staff
      tags:
      - Location
      description: 'Updates a staff member’s assignment to a location

        Response Object: StaffLocation'
      parameters:
      - name: locationId
        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: []
    delete:
      operationId: deleteLocationLocationIdStaffStaffId
      summary: Location/Staff
      tags:
      - Location
      description: 'Removes a staff member’s association to a location

        Returns: A single StaffLocation object, in JSON format.'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      - name: staffId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/Credentialing/Locations/Providers:
    post:
      operationId: postCredentialingLocationsProviders
      summary: Credentialing/Locations/Providers
      tags:
      - Location
      description: 'Associates a provider to a location in Credentialing

        Response Object: Array of Extended Provider-Location Credentialing Fields'
      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/credentialing/locations/{locationId}/staff/{staffId}:
    put:
      operationId: putCredentialingLocationsLocationIdStaffStaffId
      summary: Credentialing/Locations/Staff
      tags:
      - Location
      description: 'Updates a staff member’s Contract Start Date at a location

        Response Object: StaffLocation'
      parameters:
      - name: locationId
        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: []
  /v2/location/{locationId}/staff/{staffId}/credential:
    delete:
      operationId: deleteLocationLocationIdStaffStaffIdCredential
      summary: Location/Staff/Credential
      tags:
      - Location
      description: 'Removes a specific staff member’s credential at a location

        Returns: A single StaffLocation object, in JSON format'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      - name: staffId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/location/{locationId}/tasks:
    get:
      operationId: getLocationLocationIdTasks
      summary: Location/Tasks
      tags:
      - Location
      description: 'Returns all tasks at a particular location.

        Response Object: Array of TaskLocation'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/location/{locationId}/task:
    post:
      operationId: postLocationLocationIdTask
      summary: Location/Task
      tags:
      - Location
      description: 'Associates a task to a location

        Response Object: TaskLocation'
      parameters:
      - name: locationId
        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/location/{locationId}/task/:
    put:
      operationId: putLocationLocationIdTask
      summary: Location/Task
      tags:
      - Location
      description: 'Changes the credentialing status of a task at a location

        Response Object: TaskLocation'
      parameters:
      - name: locationId
        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/location/{locationId}/task/{taskId}:
    delete:
      operationId: deleteLocationLocationIdTaskTaskId
      summary: Location/Task
      tags:
      - Location
      description: 'Removes a task’s association to a location

        Response Object: TaskLocation'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      - name: taskId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized
      security:
      - bearerAuth: []
  /v2/location/{locationId}/tag:
    post:
      operationId: postLocationLocationIdTag
      summary: Location/Tag
      tags:
      - Location
      description: 'Assign a location tag to a location

        Returns: A single Location object, in JSON format'
      parameters:
      - name: locationId
        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: deleteLocationLocationIdTag
      summary: Location/Tag
      tags:
      - Location
      description: 'Removes tag association(s) from a location

        Returns:A message indicating the amount of tag associations removed from the specified location'
      parameters:
      - name: locationId
        in: path
        required: true
        schema:
          type: string
      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>.'