Nedap Free Field Category API

The FreeFieldCategory API from Nedap — 2 operation(s) for freefieldcategory.

Operations 2

GET /t/free_field_categories/x-stream-connect/data Retrieve all entries for free_field_categories #
GET /v0/xstream/free_field_categories/data Retrieve all entries for free_field_categories #

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-freefieldcategory-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-freefieldcategory-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Free Field Category API
  version: 0.0.0
  description: 'Operations tagged FreeFieldCategory 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: FreeFieldCategory
paths:
  /t/free_field_categories/x-stream-connect/data:
    get:
      tags:
      - FreeFieldCategory
      summary: Retrieve all entries for free_field_categories
      operationId: FreeFieldCategoryAPI.streamAll
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/list.FreeFieldCategoryList'
            application/x-ndjson:
              schema:
                $ref: '#/components/schemas/FreeFieldCategory'
        '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/free_field_categories/data
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/xstream/free_field_categories/data:
    get:
      tags:
      - FreeFieldCategory
      summary: Retrieve all entries for free_field_categories
      operationId: FreeFieldCategoryAPI.streamAll
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/list.FreeFieldCategoryList'
            application/x-ndjson:
              schema:
                $ref: '#/components/schemas/FreeFieldCategory'
        '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/free_field_categories/x-stream-connect/data
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    FreeFieldCategory:
      type: object
      properties:
        id:
          type: integer
          format: int64
          x-cupido-id: true
        carrierType:
          $ref: '#/components/schemas/CarrierType'
        name:
          type: string
          description: Name of the FreeFieldCategory
      description: Table containing the categories (such as clients and employees) that make use of free fields
      example:
        id: 1
        carrierType: 1
        name: EMPLOYEE
      xml:
        name: FreeFieldCategory
    list.FreeFieldCategoryList:
      type: object
      properties:
        freeFieldCategories:
          type: array
          items:
            $ref: '#/components/schemas/FreeFieldCategory'
          xml:
            name: freeFieldCategory
      description: FreeFieldCategoryList model (no description)
      example:
        freeFieldCategories:
        - id: 1
          carrierType: 1
          name: Employee
      xml:
        name: freeFieldCategories
    CarrierType:
      type: integer
      oneOf:
      - title: ACTIVITY
        enum:
        - 0
      - title: EMPLOYEE
        enum:
        - 1
      - title: CLIENT
        enum:
        - 2
      description: 'Specifies the type of the carrier. Possible values: 0 = ACTIVITY, 1 = EMPLOYEE, 2 = CLIENT.'
      example: 0
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json