Nedap Evs.Response Message API

The evs.ResponseMessage API from Nedap — 2 operation(s) for evs.responsemessage.

Operations 2

PUT /t/evs/response_message Send a response of an earlier sent message from FVC back to OA #
PUT /v0/administration/evs/response_message Send a response of an earlier sent message from FVC back to OA #

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-evs-responsemessage-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-evs-responsemessage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Evs.Response Message API
  version: 0.0.0
  description: 'Operations tagged evs.ResponseMessage 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: evs.ResponseMessage
paths:
  /t/evs/response_message:
    put:
      tags:
      - evs.ResponseMessage
      summary: Send a response of an earlier sent message from FVC back to OA
      operationId: evs.ResponseMessageAPI.send
      requestBody:
        description: Responsemessage to be sent to OA
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/evs.ResponseMessage'
        required: true
      responses:
        '200':
          description: default response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/evs.ResponseMessage'
      x-replaced-by: /v0/administration/evs/response_message
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/administration/evs/response_message:
    put:
      tags:
      - evs.ResponseMessage
      summary: Send a response of an earlier sent message from FVC back to OA
      operationId: evs.ResponseMessageAPI.send
      requestBody:
        description: Responsemessage to be sent to OA
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/evs.ResponseMessage'
        required: true
      responses:
        '200':
          description: default response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/evs.ResponseMessage'
      x-replacement-for:
      - /t/evs/response_message
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    evs.ResponseMessage:
      required:
      - uuid
      type: object
      properties:
        uuid:
          type: string
          description: UUID identifying this Evs response across applications
          x-cupido-id: true
        originalMessageTag:
          type: string
          description: link to the orignal message where this response belongs to
        status:
          type: string
          description: 'possible values:

            ACKED: when the hl7 message was received correctly by the external EVS provider

            NACKED: when the hl7 was denied by the external EVS provider'
        externalMessage:
          type: string
          description: 'The textual message from the external EVS provider.

            In case of status NACKED, this will given an indication of the reason why.'
      description: ResponseMessage model (no description)
      example:
        uuid: Dummy
        originalMessageTag: OriginalDummy
        status: ACKED
        externalMessage: ok
      xml:
        name: responseMessage
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json