Nedap Client Absence Reason API

The ClientAbsenceReason API from Nedap — 4 operation(s) for clientabsencereason.

Operations 4

GET /t/client_absence_reasons/{id} Get the Client Absence Reason corresponding to the given id #
GET /t/client_absence_reasons Returns every ClientAbsenceReason available from the ClientAbsenceReasonAPI #
GET /v0/administration/clientAbsenceReasons/{id} Get the Client Absence Reason corresponding to the given id #
GET /v0/administration/clientAbsenceReasons/all Returns every ClientAbsenceReason available from the ClientAbsenceReasonAPI #

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-clientabsencereason-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-clientabsencereason-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Client Absence Reason API
  version: 0.0.0
  description: 'Operations tagged ClientAbsenceReason 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: ClientAbsenceReason
paths:
  /t/client_absence_reasons/{id}:
    get:
      tags:
      - ClientAbsenceReason
      summary: Get the Client Absence Reason corresponding to the given id
      operationId: ClientAbsenceReasonAPI.byId
      parameters:
      - name: id
        in: path
        description: used for selecting ClientAbsenceReason
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientAbsenceReason'
        '404':
          description: Absence reason not found
      x-cupido-common-method: true
      x-replaced-by: /v0/administration/clientAbsenceReasons/{id}
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /t/client_absence_reasons:
    get:
      tags:
      - ClientAbsenceReason
      summary: Returns every ClientAbsenceReason available from the ClientAbsenceReasonAPI
      operationId: ClientAbsenceReasonAPI.all
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/list.ClientAbsenceReasonList'
      x-cupido-common-method: true
      x-replaced-by: /v0/administration/clientAbsenceReasons/all
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/administration/clientAbsenceReasons/{id}:
    get:
      tags:
      - ClientAbsenceReason
      summary: Get the Client Absence Reason corresponding to the given id
      operationId: ClientAbsenceReasonAPI.byId
      parameters:
      - name: id
        in: path
        description: used for selecting ClientAbsenceReason
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientAbsenceReason'
        '404':
          description: Absence reason not found
      x-cupido-common-method: true
      x-replacement-for:
      - /t/client_absence_reasons/{id}
    servers:
    - url: https://api-development.ons.io
  /v0/administration/clientAbsenceReasons/all:
    get:
      tags:
      - ClientAbsenceReason
      summary: Returns every ClientAbsenceReason available from the ClientAbsenceReasonAPI
      operationId: ClientAbsenceReasonAPI.all
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/list.ClientAbsenceReasonList'
      x-cupido-common-method: true
      x-replacement-for:
      - /t/client_absence_reasons
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    ClientAbsenceReason:
      type: object
      properties:
        id:
          type: integer
          format: int64
          x-cupido-id: true
        reason:
          type: string
        active:
          type: boolean
          default: false
      description: ClientAbsenceReason domain model used by Cupido system.
      example:
        id: 42
        reason: aap
        active: true
      xml:
        name: clientAbsenceReason
    list.ClientAbsenceReasonList:
      type: object
      properties:
        clientAbsenceReasons:
          type: array
          items:
            $ref: '#/components/schemas/ClientAbsenceReason'
          xml:
            name: clientAbsenceReason
      description: ClientAbsenceReasonList model (no description)
      example:
        clientAbsenceReasons:
        - id: 42
          reason: aap
          active: true
        - id: 1337
          reason: dev
          active: false
      xml:
        name: clientAbsenceReasons
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json