Nedap Agenda.Registration Status API

The agenda.RegistrationStatus API from Nedap — 2 operation(s) for agenda.registrationstatus.

Operations 2

GET /t/agenda_registration_status Return the agenda registrations status of a specific type corresponding to the… #
GET /v0/agenda/agenda_registration_status Return the agenda registrations status of a specific type corresponding to the… #

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-agenda-registrationstatus-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-agenda-registrationstatus-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Agenda.Registration Status API
  version: 0.0.0
  description: 'Operations tagged agenda.RegistrationStatus 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: agenda.RegistrationStatus
paths:
  /t/agenda_registration_status:
    get:
      tags:
      - agenda.RegistrationStatus
      summary: Return the agenda registrations status of a specific type corresponding to the…
      description: Return the agenda registrations status of a specific type corresponding to the given id.
      operationId: agenda.RegistrationStatusAPI.byTypeIds
      parameters:
      - name: valid_from
        in: query
        description: Start date (inclusive) of selection period
        required: true
        schema:
          type: string
          format: date
      - name: valid_to
        in: query
        description: End date (exclusive) of selection period
        required: true
        schema:
          type: string
          format: date
      - name: type
        in: query
        description: 'type of status, can be: employee, client, team, location'
        required: true
        schema:
          $ref: '#/components/schemas/agenda.RegistrationStatusType'
      - name: type_ids
        in: query
        description: List of ids
        required: true
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/agenda.list.RegistrationStatusList'
      x-replaced-by: /v0/agenda/agenda_registration_status
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/agenda/agenda_registration_status:
    get:
      tags:
      - agenda.RegistrationStatus
      summary: Return the agenda registrations status of a specific type corresponding to the…
      description: Return the agenda registrations status of a specific type corresponding to the given id.
      operationId: agenda.RegistrationStatusAPI.byTypeIds
      parameters:
      - name: valid_from
        in: query
        description: Start date (inclusive) of selection period
        required: true
        schema:
          type: string
          format: date
      - name: valid_to
        in: query
        description: End date (exclusive) of selection period
        required: true
        schema:
          type: string
          format: date
      - name: type
        in: query
        description: 'type of status, can be: employee, client, team, location'
        required: true
        schema:
          $ref: '#/components/schemas/agenda.RegistrationStatusType'
      - name: type_ids[]
        in: query
        description: List of ids
        required: true
        style: form
        explode: true
        schema:
          type: array
          items:
            type: integer
            format: int64
        x-original-parameter:
          name: type_ids
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/agenda.list.RegistrationStatusList'
      x-replacement-for:
      - /t/agenda_registration_status
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    agenda.RegistrationStatus:
      title: RegistrationStatus
      type: object
      properties:
        undeclared:
          type: integer
          description: Amount of undeclared registrations
          format: int32
        failed:
          type: integer
          description: Amount of failed registrations
          format: int32
        type:
          type: string
          description: 'Type

            <pre>

            Possible values:

            client

            employee

            team

            location

            </pre>'
        typeId:
          type: integer
          description: Type ID
          format: int32
      description: Ons Agenda - Registrations status domain model used by Cupido system.
      example:
        undeclared: 1
        failed: 1
        type: employee
        typeId: 1
    agenda.list.RegistrationStatusList:
      title: RegistrationStatusList
      type: object
      properties:
        registrationStatuses:
          type: array
          items:
            $ref: '#/components/schemas/agenda.RegistrationStatus'
      description: RegistrationStatusList model (no description)
      example:
        registrationStatuses:
        - undeclared: 1
          failed: 1
          type: employee
          typeId: 1
    agenda.RegistrationStatusType:
      type: string
      oneOf:
      - title: EMPLOYEE
        enum:
        - employee
      - title: CLIENT
        enum:
        - client
      - title: TEAM
        enum:
        - team
      - title: LOCATION
        enum:
        - location
      description: RegistrationStatusType model (no description)
      example: employee
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json