Nedap Moves.Flex Signup API

The moves.FlexSignup API from Nedap — 2 operation(s) for moves.flexsignup.

Operations 2

POST /t/moves/flex_signups Creates a flex signup for an employee on a flex request #
POST /v0/plannen_roosteren/flex_signups Creates a flex signup for an employee on a flex request #

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/nedap-moves-flexsignup-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

nedap-moves-flexsignup-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Moves.Flex Signup API
  version: 0.0.0
  description: 'Operations tagged moves.FlexSignup across 2 of this provider''s published API definitions: nedap-ons-deprecated-openapi-original.json, nedap-ons-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api-development.ons.io
tags:
- name: moves.FlexSignup
paths:
  /t/moves/flex_signups:
    post:
      tags:
      - moves.FlexSignup
      summary: Creates a flex signup for an employee on a flex request
      description: 'Signs up an employee for a specific flex request. If the employee already has a flex signup for the same shift timeline and date, the flex request will be added to the existing signup only if the request properties match those of the other request(s). The matching properties are: shift timeline ID, date, start time, end time, break start time, break end time, and expertise profile ID.'
      operationId: moves.FlexSignupAPI.create
      requestBody:
        description: The employee ID and flex request ID to create a signup
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/moves.FlexSignupRequest'
        required: true
      responses:
        '200':
          description: Flex signup created or updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/moves.FlexSignup'
        '400':
          description: Bad request - validation errors, employee already signed up, or resource not found
        '401':
          description: Unauthorized - authentication required
      x-cupido-common-method: true
      x-replaced-by: /v0/plannen_roosteren/flex_signups
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/plannen_roosteren/flex_signups:
    post:
      tags:
      - moves.FlexSignup
      summary: Creates a flex signup for an employee on a flex request
      description: 'Signs up an employee for a specific flex request. If the employee already has a flex signup for the same shift timeline and date, the flex request will be added to the existing signup only if the request properties match those of the other request(s). The matching properties are: shift timeline ID, date, start time, end time, break start time, break end time, and expertise profile ID.'
      operationId: moves.FlexSignupAPI.create
      requestBody:
        description: The employee ID and flex request ID to create a signup
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/moves.FlexSignupRequest'
        required: true
      responses:
        '200':
          description: Flex signup created or updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/moves.FlexSignup'
        '400':
          description: Bad request - validation errors, employee already signed up, or resource not found
        '401':
          description: Unauthorized - authentication required
      x-cupido-common-method: true
      x-replacement-for:
      - /t/moves/flex_signups
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    moves.FlexSignupRequest:
      title: moves.FlexSignupRequest
      required:
      - employeeId
      - flexRequestId
      type: object
      properties:
        employeeId:
          type: string
          description: The external ID of the employee
          example: EMP123
        flexRequestId:
          type: integer
          description: The ID of the flex request to sign up for
          format: int64
          example: 456
      description: FlexSignupRequest model (no description)
      example:
        employeeId: EMP123
        flexRequestId: 456
    moves.FlexSignup:
      type: object
      properties:
        id:
          type: integer
          format: int64
          x-cupido-id: true
        date:
          type: string
          format: date
        shiftId:
          type: string
        employeeId:
          type: integer
          format: int64
        employeeLeadingName:
          type: string
        employeeName:
          type: string
        suggested:
          type: boolean
        struckOut:
          type: boolean
        signedUpAt:
          type: string
          format: date-time
      description: FlexSignup model (no description)
      example:
        id: 1
        date: '1999-12-31'
        shiftId: 1@2014-03-28
        employeeId: 1
        employeeLeadingName: Jan Henk
        employeeName: Jan Henk Heilersig
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json