Nedap Dienst Verwijzen Module.Bundle Wrapper API

The dienst_verwijzen_module.BundleWrapper API from Nedap — 2 operation(s) for dienst_verwijzen_module.bundlewrapper.

Operations 2

POST /t/dienst_verwijzen_module/cupido/fhir/r3/bundle_wrapper Create a new item using a FHIR R3 bundle wrapped in a json object #
POST /v0/dienst_verwijzen_module/cupido/fhir/r3/bundle_wrapper Create a new item using a FHIR R3 bundle wrapped in a json object #

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-dienst-verwijzen-module-bundlewrapper-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-dienst-verwijzen-module-bundlewrapper-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Dienst Verwijzen Module.Bundle Wrapper API
  version: 0.0.0
  description: 'Operations tagged dienst_verwijzen_module.BundleWrapper 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: dienst_verwijzen_module.BundleWrapper
paths:
  /t/dienst_verwijzen_module/cupido/fhir/r3/bundle_wrapper:
    post:
      tags:
      - dienst_verwijzen_module.BundleWrapper
      summary: Create a new item using a FHIR R3 bundle wrapped in a json object
      description: The bundle contains a single field `data` that contains serialized JSON. The success response has no body.
      operationId: dienst_verwijzen_module.BundleWrapperAPI.createByWrapper
      requestBody:
        description: BundleWrapper to create
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/dienst_verwijzen_module.BundleWrapper'
        required: true
      responses:
        '202':
          description: Accepted
        '400':
          description: Missing bundle data, missing identifiers, or other validation errors that prevent the Bundle from being processed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Persistence conflict while storing the Bundle backup
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '412':
          description: Bundle processing precondition failed, for example when the customer code does not resolve to a tenant
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: FHIR Bundle parse error or missing required FHIR Bundle element
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-replaced-by: /v0/dienst_verwijzen_module/cupido/fhir/r3/bundle_wrapper
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/dienst_verwijzen_module/cupido/fhir/r3/bundle_wrapper:
    post:
      tags:
      - dienst_verwijzen_module.BundleWrapper
      summary: Create a new item using a FHIR R3 bundle wrapped in a json object
      description: The bundle contains a single field `data` that contains serialized JSON. The success response has no body.
      operationId: dienst_verwijzen_module.BundleWrapperAPI.createByWrapper
      requestBody:
        description: BundleWrapper to create
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/dienst_verwijzen_module.BundleWrapper'
        required: true
      responses:
        '202':
          description: Accepted
        '400':
          description: Missing bundle data, missing identifiers, or other validation errors that prevent the Bundle from being processed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: Persistence conflict while storing the Bundle backup
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '412':
          description: Bundle processing precondition failed, for example when the customer code does not resolve to a tenant
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: FHIR Bundle parse error or missing required FHIR Bundle element
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-replacement-for:
      - /t/dienst_verwijzen_module/cupido/fhir/r3/bundle_wrapper
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    ErrorResponse:
      title: ErrorResponse
      type: object
      properties:
        errorResponseEntries:
          type: array
          items:
            $ref: '#/components/schemas/ErrorResponseEntry'
          xml:
            wrapped: true
      description: Error response model
      example:
        errorResponseEntries:
        - field: one
          value: a
          message: field can not be empty
        - field: two
          value: a
          message: too short
    dienst_verwijzen_module.BundleWrapper:
      required:
      - data
      type: object
      properties:
        data:
          type: string
          description: Data from original HL7 FHIR DSTU3 bundle. Contains JSON.
      description: BundleWrapper model for transporting HL7 FHIR DSTU3 bundle data to the Dienst Verwijzen module.
      example:
        data: bundlejson
    ErrorResponseEntry:
      title: ErrorResponseEntry
      type: object
      properties:
        field:
          type: string
        value:
          type: string
        message:
          type: string
      description: Error response entry model
      example:
        field: one
        value: empty
        message: field can not be empty
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json