Nedap Groepsplanning.Group API

The groepsplanning.Group API from Nedap — 2 operation(s) for groepsplanning.group.

Operations 2

GET /t/groups/x-stream-connect/data Return all Group models from groepsplanning in a streaming manner #
GET /v0/xstream/groepsplanning_groups/data Return all Group models from groepsplanning in a streaming manner #

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-groepsplanning-group-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-groepsplanning-group-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Groepsplanning.Group API
  version: 0.0.0
  description: 'Operations tagged groepsplanning.Group 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: groepsplanning.Group
paths:
  /t/groups/x-stream-connect/data:
    get:
      tags:
      - groepsplanning.Group
      summary: Return all Group models from groepsplanning in a streaming manner
      operationId: groepsplanning.GroupAPI.streamAll
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/groepsplanning.list.GroupList'
            application/x-ndjson:
              schema:
                $ref: '#/components/schemas/groepsplanning.Group'
        '400':
          description: Could not parse request parameter
        '404':
          description: Resource not found
        '500':
          description: Unspecified internal error
      x-cupido-common-method: true
      x-replaced-by: /v0/xstream/groepsplanning_groups/data
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/xstream/groepsplanning_groups/data:
    get:
      tags:
      - groepsplanning.Group
      summary: Return all Group models from groepsplanning in a streaming manner
      operationId: groepsplanning.GroupAPI.streamAll
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/groepsplanning.list.GroupList'
            application/x-ndjson:
              schema:
                $ref: '#/components/schemas/groepsplanning.Group'
        '400':
          description: Could not parse request parameter
        '404':
          description: Resource not found
        '500':
          description: Unspecified internal error
      x-cupido-common-method: true
      x-replacement-for:
      - /t/groups/x-stream-connect/data
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    groepsplanning.list.GroupList:
      type: object
      properties:
        groups:
          type: array
          items:
            $ref: '#/components/schemas/groepsplanning.Group'
      description: List of groups
      example:
        groups:
        - id: 1
          name: alcoholics anonymous
          description: A group to help alcoholics recover.
          createdAt: '2024-03-27T08:00:00.000+01:00'
          updatedAt: '2024-03-27T08:00:00.000+01:00'
        - id: 2
          name: boulimia
          description: eating disorder group.
          createdAt: '2024-03-27T08:00:00.000+01:00'
          updatedAt: '2024-03-27T08:00:00.000+01:00'
    groepsplanning.Group:
      type: object
      properties:
        id:
          type: integer
          description: The identifier of the group
          format: int64
          x-cupido-id: true
        name:
          type: string
          description: The name of the group
        description:
          type: string
          description: The description of the group
        startMoment:
          type: string
          description: Moment on which group is expected to start. Underlying data model is a date, but only the first of the month is accepted as a valid date. Should be presented to the user as a year-month select.
          format: date
        locationId:
          type: integer
          description: The identifier of the location assigned to this group
          format: int64
        createdAt:
          type: string
          description: The date and time when the group was created
          format: date-time
        updatedAt:
          type: string
          description: The date and time when the group was last altered
          format: date-time
        archivedAt:
          type: string
          description: The date and time when the group was archived
          format: date-time
      description: A group represents a (recurring) meeting where multiple clients can participate
      example:
        id: 1
        name: alcoholics anonymous
        description: A group to help alcoholics recover.
        startMoment: '2024-02-01'
        locationId: 1
        createdAt: '2024-03-27T08:00:00.000+01:00'
        updatedAt: '2024-03-27T08:00:00.000+01:00'
        archivedAt: '2025-03-27T08:00:00.000+01:00'
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json