Nedap Client Story.Change Set API

The client_story.ChangeSet API from Nedap — 2 operation(s) for client_story.changeset.

Operations 2

GET /t/client_story/change_sets/most_recent_by_client/{client_id} Returns the most recent change set for the client #
GET /v0/client_story/change_sets/most_recent_by_client/{client_id} Returns the most recent change set for the client #

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-client-story-changeset-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-client-story-changeset-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Client Story.Change Set API
  version: 0.0.0
  description: 'Operations tagged client_story.ChangeSet 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: client_story.ChangeSet
paths:
  /t/client_story/change_sets/most_recent_by_client/{client_id}:
    get:
      tags:
      - client_story.ChangeSet
      summary: Returns the most recent change set for the client
      operationId: client_story.ChangeSetAPI.mostRecentByClient
      parameters:
      - name: client_id
        in: path
        description: The ID of the client
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/client_story.ChangeSet'
      x-replaced-by: /v0/client_story/change_sets/most_recent_by_client/{client_id}
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/client_story/change_sets/most_recent_by_client/{client_id}:
    get:
      tags:
      - client_story.ChangeSet
      summary: Returns the most recent change set for the client
      operationId: client_story.ChangeSetAPI.mostRecentByClient
      parameters:
      - name: client_id
        in: path
        description: The ID of the client
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/client_story.ChangeSet'
      x-replacement-for:
      - /t/client_story/change_sets/most_recent_by_client/{client_id}
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    client_story.Change:
      type: object
      properties:
        type:
          type: string
          description: 'Type of the question that was changed: array, event, eventMultimedia, multimedia, multipleChoice or question'
        action:
          type: string
          description: 'Change action that was applied to the question answer: update, delete or create'
        questionTitle:
          type: string
          description: Title of the question this change was applied to
        questionContext:
          type: string
          description: Context text of the question that was changed
        oldValue:
          type: string
          description: Old / previous value of the answer to this question
        newValue:
          type: string
          description: Value of this question after this change was applied
      description: Change model (no description)
      example:
        type: question
        action: create
        questionTitle: Test question?
        questionContext: Test question to test
        oldValue: ''
        newValue: Test answer
    client_story.ChangeSet:
      type: object
      properties:
        timestamp:
          type: string
          description: Timestamp of this changeset
          format: date-time
        source:
          type: string
          description: 'The source that made the changes in this changeset

            Can be Caren or Dossier'
        userId:
          type: integer
          description: The user id that made the changes. Can refer to the user id or the caren person id depending on the source
          format: int32
          default: 0
        changes:
          type: array
          items:
            $ref: '#/components/schemas/client_story.Change'
          description: A list of all changes in this changeset
      description: ChangeSet model (no description)
      example:
        timestamp: '2019-10-01T00:00:00.000+02:00'
        source: Dossier
        userId: 1337
        changes:
        - type: question
          action: create
          questionTitle: Test question?
          questionContext: Test question to test
          oldValue: ''
          newValue: Test answer
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json