Quinyx Forecast Target Data API

The Forecast Target Data API from Quinyx — 2 operation(s) for forecast target data.

Operations 3

POST /v2/forecasts/target-data Upload daily target data with maximum 366 rows #
GET /v2/forecasts/target-data/{externalId} Get target data for a target configuration, up to 360 days #
DELETE /v2/forecasts/target-data/{externalId} Delete target data for a target configuration, up to 360 days #

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-forecast-target-data-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-forecast-target-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Quinyx Forecast Target Data 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: Forecast Target Data
  x-displayName: Forecast Target Data
paths:
  /v2/forecasts/target-data:
    post:
      tags:
      - Forecast Target Data
      summary: Upload daily target data with maximum 366 rows
      description: Operation used to upload target data for daily basic. The total amount of data rows must not exceed 366.
      operationId: postTargetData
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/forecast-data-ingestion_TargetDataInputList'
        required: true
      responses:
        '200':
          description: Data successfully uploaded
          content:
            '*/*':
              schema:
                type: string
        '400':
          description: Unexpected input.
          content:
            '*/*':
              schema:
                type: string
        '403':
          description: Forbidden to perform this action
          content:
            '*/*':
              schema:
                type: string
      x-audience: public
  /v2/forecasts/target-data/{externalId}:
    get:
      tags:
      - Forecast Target Data
      summary: Get target data for a target configuration, up to 360 days
      description: Getting the Target data for the given target configuration. The range between these two dates can not exceed 360 days.
      operationId: getTargetData
      parameters:
      - name: externalId
        in: path
        description: External ID of the target configuration
        required: true
        schema:
          type: string
      - name: externalUnitId
        in: query
        required: true
        schema:
          type: string
      - name: externalSectionId
        in: query
        required: false
        schema:
          type: string
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/forecast-data-ingestion_TargetDataOutput'
        '403':
          description: Forbidden to perform this action
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/forecast-data-ingestion_TargetDataOutput'
      x-audience: public
    delete:
      tags:
      - Forecast Target Data
      summary: Delete target data for a target configuration, up to 360 days
      description: Delete the Target data for the given target configuration. The range between these two dates can not exceed 360 days.
      operationId: deleteTargetData
      parameters:
      - name: externalId
        in: path
        required: true
        schema:
          type: string
      - name: externalUnitId
        in: query
        required: true
        schema:
          type: string
      - name: externalSectionId
        in: query
        required: false
        schema:
          type: string
      - name: startDate
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: endDate
        in: query
        required: true
        schema:
          type: string
          format: date
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: string
        '403':
          description: Forbidden to perform this action
          content:
            '*/*':
              schema:
                type: string
      x-audience: public
components:
  schemas:
    forecast-data-ingestion_TargetDataInputList:
      type: object
      properties:
        requests:
          type: array
          items:
            $ref: '#/components/schemas/forecast-data-ingestion_TargetDataInput'
      required:
      - requests
    forecast-data-ingestion_TargetDataOutput:
      type: object
      properties:
        externalId:
          type: string
          example: target-1
        externalUnitId:
          type: string
          example: unit-1
        externalSectionId:
          type: string
          example: section-1
        targetPayload:
          type: array
          items:
            $ref: '#/components/schemas/forecast-data-ingestion_TargetDataPayload'
    forecast-data-ingestion_TargetDataInput:
      type: object
      properties:
        externalId:
          type: string
          example: target-1
          minLength: 1
        externalUnitId:
          type: string
          example: unit-1
          minLength: 1
        externalSectionId:
          type: string
          example: section-1
        targetPayload:
          type: array
          items:
            $ref: '#/components/schemas/forecast-data-ingestion_TargetDataPayload'
      required:
      - externalId
      - externalUnitId
    forecast-data-ingestion_TargetDataPayload:
      type: object
      properties:
        rangeType:
          type: string
          enum:
          - EXACT
          - NOT_LESS_THAN
          - NOT_MORE_THAN
          - BETWEEN
          example: EXACT
        value:
          type: number
          format: double
          example: 100
        fromValue:
          type: number
          format: double
          example: 0
        toValue:
          type: number
          format: double
          example: 100
        date:
          type: string
          format: date
          example: '2026-01-15'
      required:
      - date
      - rangeType
  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: {}