Quinyx Mappings API

The Mappings API from Quinyx — 5 operation(s) for mappings.

Operations 6

PUT /v2/mapping/{mappingId} Update mapping #
DELETE /v2/mapping/{mappingId} Delete mapping #
POST /v2/mapping/groups/{domainGroupId} Create mapping #
POST /v2/mapping/domains/{domainId}/mappings/{mappingType} Search mappings by domain and type #
GET /v2/mapping/mappingTypes List existing mapping types that can be used in a request #
GET /v2/mapping/mappingTypes/{mappingType}/mappings List mappings by type #

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-mappings-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-mappings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quinyx Mappings API
  version: v2
  x-service: absence-schedule
  description: null
servers:
- url: https://api.quinyx.com
  description: Production API
- url: https://api-rc.quinyx.com
  description: RC API
tags:
- name: Mappings
  x-displayName: Mappings
paths:
  /v2/mapping/{mappingId}:
    put:
      tags:
      - Mappings
      summary: Update mapping
      operationId: update
      parameters:
      - name: mappingId
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mapping_MappingExternalValueRequest'
        required: true
      responses:
        '200':
          description: Response for the updated mapping of quinyxValue and externalValue
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mapping_MappingResponse'
        '400':
          description: In case when externalValue is invalid
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/mapping_ValidationError'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not found
        '501':
          description: Mapping type not supported
      x-audience: public
    delete:
      tags:
      - Mappings
      summary: Delete mapping
      operationId: delete
      parameters:
      - name: mappingId
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Response in case of successful delete
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/mapping_ValidationError'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not found
      x-audience: public
  /v2/mapping/groups/{domainGroupId}:
    post:
      tags:
      - Mappings
      summary: Create mapping
      operationId: save
      parameters:
      - name: domainGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mapping_MappingRequest'
        required: true
      responses:
        '201':
          description: Response for the created mapping of quinyxValue and externalValue
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/mapping_MappingResponse'
        '400':
          description: In case when quinyxValue or externalValue are invalid
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/mapping_ValidationError'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not found
        '501':
          description: Mapping type not supported
      x-audience: public
  /v2/mapping/domains/{domainId}/mappings/{mappingType}:
    post:
      tags:
      - Mappings
      summary: Search mappings by domain and type
      description: Retrieves mapping records for the given domainId and mappingType, narrowed down by quinyxValue or/and externalValue.
      operationId: getMappings
      parameters:
      - name: domainId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      - name: mappingType
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mapping_MappingValues'
        required: true
      responses:
        '200':
          description: " Response that returns the list of mapping records for the given domainId and mappingType and quinyxValue or externalValue, or both. \n If both externalValue and quinyxValue are provided then a list of one element is returned.\n "
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/mapping_MappingResponse'
        '400':
          description: "   If the request is invalid or malformed.\n   Note: body is required, if externalValue and quinyxValue is not available in the request \n   the corresponding fields should be set to NULL.\n "
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/mapping_ValidationError'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not found
      x-audience: public
  /v2/mapping/mappingTypes:
    get:
      tags:
      - Mappings
      summary: List existing mapping types that can be used in a request
      operationId: getMappingTypes
      responses:
        '200':
          description: List of all mapping types which can be used to fetch quinyxValue or externalValue
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/mapping_ValidationError'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      x-audience: public
  /v2/mapping/mappingTypes/{mappingType}/mappings:
    get:
      tags:
      - Mappings
      summary: List mappings by type
      operationId: getMappings_1
      parameters:
      - name: mappingType
        in: path
        required: true
        schema:
          type: string
      - name: quinyxValue
        in: query
        required: false
        schema:
          type: string
      - name: externalValue
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Response where you see the quinyxValue and externalValue
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/mapping_MappingResponse'
        '400':
          description: 'In case you send quinyxValue and externalValue at the same time.

            You should send only one of them to retrieve the other value.

            Or if the mappingType is invalid.

            '
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/mapping_ValidationError'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not found
      x-audience: public
components:
  schemas:
    mapping_MappingValues:
      type: object
      properties:
        quinyxValue:
          type: string
          example: '1234'
          maxLength: 256
          minLength: 1
        externalValue:
          type: string
          example: ext-abc-001
          maxLength: 256
          minLength: 1
    mapping_MappingRequest:
      type: object
      properties:
        quinyxValue:
          type: string
          example: '1234'
          maxLength: 256
          minLength: 1
        externalValue:
          type: string
          example: ext-abc-001
          maxLength: 256
          minLength: 1
        mappingType:
          type: string
          enum:
          - GROUP_ID
          - EMPLOYEE_ID
          - ABSENCE_ID
          - UNIT_ID
          - SECTION_ID
          - ROLE_ID
          - AGREEMENT_TEMPLATE_ID
          - AGREEMENT
          - DISTRICT_ID
          example: GROUP_ID
        parentId:
          type: integer
          format: int32
          example: 42
      required:
      - externalValue
      - quinyxValue
    mapping_MappingResponse:
      type: object
      properties:
        mappingType:
          type: string
          example: GROUP_ID
        id:
          type: string
          example: 5f9a8c6d-1e2b-3c4d-5e6f-7a8b9c0d1e2f
        quinyxValue:
          type: string
          example: '1234'
        externalValue:
          type: string
          example: ext-abc-001
        domainId:
          type: integer
          format: int32
          example: 1
    mapping_MappingExternalValueRequest:
      type: object
      properties:
        externalValue:
          type: string
          example: ext-abc-001
          maxLength: 256
          minLength: 1
      required:
      - externalValue
    mapping_ValidationError:
      type: object
      properties:
        field:
          type: string
          example: externalValue
        message:
          type: string
          example: must not be blank
        severity:
          type: string
          example: ERROR
        localisedMessage:
          type: string
          example: External value must not be blank
        groupingMessage:
          type: string
          example: validation
        additionalErrorParameters:
          type: object
          additionalProperties: {}
  securitySchemes:
    employee_OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes:
            hr:employees:create: ''
            hr:employees:delete: ''
            hr:employees:read: ''
            hr:employees:update: ''
    opening-hours_OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes: {}
    organisation_OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes:
            organization:groups:create: ''
            organization:groups:delete: ''
            organization:groups:read: ''
            organization:groups:update: ''
    rest-api-uaa_OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes: {}
    schedule-availability_OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes: {}
    schedule_OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes: {}
    statistics_OAuth2ClientCredentials:
      type: oauth2
      description: OAuth2 Client Credentials flow. See https://developer.quinyx.com/api/authentication
      flows:
        clientCredentials:
          tokenUrl: /oauth/v3/token
          scopes: {}