Quinyx Leave Reasons API

The Leave Reasons API from Quinyx — 1 operation(s) for leave reasons.

Operations 1

GET /users/leave-reasons Returns list of leave reasons #

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/quinyx-leave-reasons-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

quinyx-leave-reasons-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quinyx User Leave Reasons API
  version: v2
  x-service: userapi
  description: 'The Quinyx User API exposes per-employee data — upcoming and

    unassigned shifts, leave applications, leave reasons, and

    leave-application managers — to authenticated end users. It

    uses an OAuth 2.0 password grant with the employee''s own

    Quinyx credentials and is intentionally separate from the

    customer/integration-level Quinyx API.

    '
servers:
- url: https://user-api.quinyx.com/v2
  description: Production API
- url: https://user-api-rc.quinyx.com/v2
  description: RC API
tags:
- name: Leave Reasons
paths:
  /users/leave-reasons:
    get:
      tags:
      - Leave Reasons
      summary: Returns list of leave reasons
      description: Returns list of leave reasons
      operationId: e5fd7d826054be45710680505ab8c092
      responses:
        '200':
          description: Leave reason list
          content:
            application/json:
              schema:
                properties:
                  leaveReasons:
                    type: array
                    items:
                      $ref: '#/components/schemas/LeaveReason'
                type: object
      security:
      - BearerAuth: []
      x-audience: public
components:
  schemas:
    LeaveReason:
      description: Leave Reason Model
      properties:
        id:
          type: string
          example: I2WBgosnFVE_8v58HOxF1.ARrDgOqLcihwZAkPusTGU-
        name:
          type: string
          example: Sick leave
      type: object
  securitySchemes:
    BearerAuth:
      type: apiKey
      in: header
      name: Authorization