Quinyx Collaboration Groups API

The Collaboration Groups API from Quinyx — 17 operation(s) for collaboration groups.

Operations 19

GET /v2/collaboration-groups/groups/{collaborationGroupId} Get collaboration group by id #
PUT /v2/collaboration-groups/groups/{collaborationGroupId} Update collaboration group #
DELETE /v2/collaboration-groups/groups/{collaborationGroupId} Delete collaboration group with its children #
PUT /v2/collaboration-groups/groups/{collaborationGroupId}/unarchive Unarchive collaboration group #
PUT /v2/collaboration-groups/groups/{collaborationGroupId}/move Move a collaboration group to a new parent #
PUT /v2/collaboration-groups/groups/{collaborationGroupId}/archive Archive collaboration group #
POST /v2/collaboration-groups/groups Create collaboration group for domain #
POST /v2/collaboration-groups/associate-groups Associate groups to a collaboration group #
POST /v2/collaboration-groups/associate-employees Associate employees to a collaboration group #
GET /v2/collaboration-groups/root-by-domain/{domainId} Get root collaboration group by domain id #
GET /v2/collaboration-groups/groups/{rootGroupId}/all-under-root List collaboration groups under root #
GET /v2/collaboration-groups/groups/{parentId}/children List child collaboration groups #
GET /v2/collaboration-groups/groups/{collaborationGroupId}/employees List employee ids in collaboration group #
GET /v2/collaboration-groups/groups/{collaborationGroupId}/eligible-parents List eligible parent collaboration groups #
GET /v2/collaboration-groups/groups/group/{groupId} List collaboration groups for group #
GET /v2/collaboration-groups/groups/employee/{employeeId} List collaboration groups for employee #
GET /v2/collaboration-groups/by-root/{rootCollaborationGroupId}/employee/{employeeId} Get collaboration group by root id and employee id #
DELETE /v2/collaboration-groups/delete-groups Remove groups from a collaboration group, optionally including archived collaboration groups #
DELETE /v2/collaboration-groups/delete-employees Remove employees from a collaboration group, optionally including archived collaboration groups #

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-collaboration-groups-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-collaboration-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quinyx Collaboration Groups 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: Collaboration Groups
  x-displayName: Collaboration Groups
paths:
  /v2/collaboration-groups/groups/{collaborationGroupId}:
    get:
      tags:
      - Collaboration Groups
      summary: Get collaboration group by id
      operationId: getCollaborationGroupsById
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: includeArchived
        in: query
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/collaboration-groups_CollaborationGroupDetails'
      x-audience: public
    put:
      tags:
      - Collaboration Groups
      summary: Update collaboration group
      operationId: editCollaborationGroups
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/collaboration-groups_CollaborationGroupUpdate'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/collaboration-groups_CollaborationGroup'
      x-audience: public
    delete:
      tags:
      - Collaboration Groups
      summary: Delete collaboration group with its children
      operationId: deleteCollaborationGroupsWithChildren
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: includeArchived
        in: query
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: OK
      x-audience: public
  /v2/collaboration-groups/groups/{collaborationGroupId}/unarchive:
    put:
      tags:
      - Collaboration Groups
      summary: Unarchive collaboration group
      operationId: unArchiveCollaborationGroup
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
      x-audience: public
  /v2/collaboration-groups/groups/{collaborationGroupId}/move:
    put:
      tags:
      - Collaboration Groups
      summary: Move a collaboration group to a new parent
      operationId: moveCollaborationGroup
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/collaboration-groups_CollaborationGroupMove'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/collaboration-groups_CollaborationGroup'
      x-audience: public
  /v2/collaboration-groups/groups/{collaborationGroupId}/archive:
    put:
      tags:
      - Collaboration Groups
      summary: Archive collaboration group
      operationId: archiveCollaborationGroup
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
      x-audience: public
  /v2/collaboration-groups/groups:
    post:
      tags:
      - Collaboration Groups
      summary: Create collaboration group for domain
      operationId: createCollaborationGroups
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/collaboration-groups_CollaborationGroupCreate'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/collaboration-groups_CollaborationGroup'
      x-audience: public
  /v2/collaboration-groups/associate-groups:
    post:
      tags:
      - Collaboration Groups
      summary: Associate groups to a collaboration group
      operationId: associateGroupsToCollaborationGroup
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/collaboration-groups_CollaborationGroupGroupDTO'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/collaboration-groups_CollaborationGroupGroup'
      x-audience: public
  /v2/collaboration-groups/associate-employees:
    post:
      tags:
      - Collaboration Groups
      summary: Associate employees to a collaboration group
      operationId: associateEmployeesToCollaborationGroup
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/collaboration-groups_CollaborationGroupEmployeeDTO'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/collaboration-groups_CollaborationGroupEmployee'
      x-audience: public
  /v2/collaboration-groups/root-by-domain/{domainId}:
    get:
      tags:
      - Collaboration Groups
      summary: Get root collaboration group by domain id
      operationId: getRootCollaborationGroupsByDomain
      parameters:
      - name: domainId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/collaboration-groups_CollaborationGroupDetails'
      x-audience: public
  /v2/collaboration-groups/groups/{rootGroupId}/all-under-root:
    get:
      tags:
      - Collaboration Groups
      summary: List collaboration groups under root
      operationId: getAllCollaborationGroupsUnderRoot
      parameters:
      - name: rootGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: includeArchived
        in: query
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/collaboration-groups_CollaborationGroupDetails'
      x-audience: public
  /v2/collaboration-groups/groups/{parentId}/children:
    get:
      tags:
      - Collaboration Groups
      summary: List child collaboration groups
      operationId: getChildrenGroups
      parameters:
      - name: parentId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/collaboration-groups_CollaborationGroupDetails'
      x-audience: public
  /v2/collaboration-groups/groups/{collaborationGroupId}/employees:
    get:
      tags:
      - Collaboration Groups
      summary: List employee ids in collaboration group
      operationId: getCollaborationGroupEmployeeIds
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: includeArchived
        in: query
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: integer
                  format: int32
      x-audience: public
  /v2/collaboration-groups/groups/{collaborationGroupId}/eligible-parents:
    get:
      tags:
      - Collaboration Groups
      summary: List eligible parent collaboration groups
      operationId: getEligibleParentCollaborationGroups
      parameters:
      - name: collaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/collaboration-groups_CollaborationGroup'
      x-audience: public
  /v2/collaboration-groups/groups/group/{groupId}:
    get:
      tags:
      - Collaboration Groups
      summary: List collaboration groups for group
      operationId: getCollaborationGroupsByEmployeeGroupId
      parameters:
      - name: groupId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/collaboration-groups_CollaborationGroupDetails'
      x-audience: public
  /v2/collaboration-groups/groups/employee/{employeeId}:
    get:
      tags:
      - Collaboration Groups
      summary: List collaboration groups for employee
      operationId: getCollaborationGroupsByEmployeeId
      parameters:
      - name: employeeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/collaboration-groups_CollaborationGroupDetails'
      x-audience: public
  /v2/collaboration-groups/by-root/{rootCollaborationGroupId}/employee/{employeeId}:
    get:
      tags:
      - Collaboration Groups
      summary: Get collaboration group by root id and employee id
      operationId: getCollaborationGroupByRootIdAndEmployeeId
      parameters:
      - name: rootCollaborationGroupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: employeeId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/collaboration-groups_CollaborationGroupDetails'
      x-audience: public
  /v2/collaboration-groups/delete-groups:
    delete:
      tags:
      - Collaboration Groups
      summary: Remove groups from a collaboration group, optionally including archived collaboration groups
      operationId: deleteGroupsFromCollaborationGroup
      parameters:
      - name: includeArchived
        in: query
        required: false
        schema:
          type: boolean
          default: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/collaboration-groups_CollaborationGroupGroupDTO'
        required: true
      responses:
        '200':
          description: OK
      x-audience: public
  /v2/collaboration-groups/delete-employees:
    delete:
      tags:
      - Collaboration Groups
      summary: Remove employees from a collaboration group, optionally including archived collaboration groups
      operationId: deleteEmployeesFromCollaborationGroup
      parameters:
      - name: includeArchived
        in: query
        required: false
        schema:
          type: boolean
          default: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/collaboration-groups_CollaborationGroupEmployeeDTO'
        required: true
      responses:
        '200':
          description: OK
      x-audience: public
components:
  schemas:
    collaboration-groups_CollaborationGroupDetails:
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 1
        name:
          type: string
          example: Region North
        groups:
          type: array
          items:
            type: integer
            format: int32
        employees:
          type: array
          items:
            type: integer
            format: int32
        parent:
          type: integer
          format: int64
          example: 10
        children:
          type: array
          items:
            type: integer
            format: int64
        labelId:
          type: integer
          format: int64
          example: 5
        domoDashboardId:
          type: string
          example: abc12
        isArchived:
          type: boolean
          example: false
    collaboration-groups_CollaborationGroupCreate:
      type: object
      properties:
        name:
          type: string
          example: Region North
          minLength: 1
        domainId:
          type: integer
          format: int32
          example: 100
        parentId:
          type: integer
          format: int64
          example: 10
        labelId:
          type: integer
          format: int64
          example: 5
        domoDashboardId:
          type: string
          example: abc12
          maxLength: 5
          minLength: 5
          pattern: ^[a-zA-Z0-9]*$
      required:
      - domainId
      - labelId
      - name
    collaboration-groups_CollaborationGroupGroup:
      type: object
      properties:
        collaborationGroupId:
          type: integer
          format: int64
          example: 1
        groupIds:
          type: array
          items:
            type: integer
            format: int32
    collaboration-groups_CollaborationGroupGroupDTO:
      type: object
      properties:
        collaborationGroupId:
          type: integer
          format: int64
          example: 1
        groupIds:
          type: array
          items:
            type: integer
            format: int32
          minItems: 1
      required:
      - collaborationGroupId
      - groupIds
    collaboration-groups_CollaborationGroupEmployee:
      type: object
      properties:
        collaborationGroupId:
          type: integer
          format: int64
          example: 1
        employeeIds:
          type: array
          items:
            type: integer
            format: int32
    collaboration-groups_CollaborationGroupEmployeeDTO:
      type: object
      properties:
        collaborationGroupId:
          type: integer
          format: int64
          example: 1
        employeeIds:
          type: array
          items:
            type: integer
            format: int32
          minItems: 1
      required:
      - collaborationGroupId
      - employeeIds
    collaboration-groups_CollaborationGroupMove:
      type: object
      properties:
        newParentId:
          type: integer
          format: int64
          example: 10
      required:
      - newParentId
    collaboration-groups_CollaborationGroupUpdate:
      type: object
      properties:
        name:
          type: string
          example: Region North
          minLength: 1
        labelId:
          type: integer
          format: int64
          example: 5
        domoDashboardId:
          type: string
          example: abc12
          maxLength: 5
          minLength: 5
          pattern: ^[a-zA-Z0-9]*$
      required:
      - labelId
      - name
    collaboration-groups_CollaborationGroup:
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 1
        name:
          type: string
          example: Region North
        parentId:
          type: integer
          format: int64
          example: 10
        domainId:
          type: integer
          format: int32
          example: 100
        labelId:
          type: integer
          format: int64
          example: 5
        domoDashboardId:
          type: string
          example: abc-123
        isArchived:
          type: boolean
          example: false
  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: {}