Flueid Order Options API

The OrderOptions API from Flueid — 2 operation(s) for orderoptions.

Operations 2

GET /api/OrderOptions/GetAllLookupCodesForCompany Returns a list of all Lookup codes for a company by company id, division id, branch id
POST /api/OrderOptions/SaveEntityLookupCodes Saves a list of Order Roles and Lookup Codes

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/flueid-orderoptions-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

flueid-orderoptions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flueid Pro Order Options API
  version: '1.0'
servers:
- url: https://api.pro.flueid.com
  description: Flueid Pro production API
tags:
- name: OrderOptions
paths:
  /api/OrderOptions/GetAllLookupCodesForCompany:
    get:
      tags:
      - OrderOptions
      summary: Returns a list of all Lookup codes for a company by company id, division id, branch id
      parameters:
      - name: companyId
        in: query
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      - name: api-version
        in: query
        description: The requested API version
        schema:
          type: string
          default: '1.0'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
            application/json:
              schema:
                $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
            text/json:
              schema:
                $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
  /api/OrderOptions/SaveEntityLookupCodes:
    post:
      tags:
      - OrderOptions
      summary: Saves a list of Order Roles and Lookup Codes
      parameters:
      - name: api-version
        in: query
        description: The requested API version
        schema:
          type: string
          default: '1.0'
      requestBody:
        description: ''
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
          application/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
          text/json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
            application/json:
              schema:
                $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
            text/json:
              schema:
                $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodes'
components:
  schemas:
    MongoDB.Bson.ObjectId:
      type: object
      properties:
        timestamp:
          type: integer
          format: int32
          readOnly: true
        machine:
          type: integer
          format: int32
          readOnly: true
          deprecated: true
        pid:
          type: integer
          format: int32
          readOnly: true
          deprecated: true
        increment:
          type: integer
          format: int32
          readOnly: true
          deprecated: true
        creationTime:
          type: string
          format: date-time
          readOnly: true
      additionalProperties: false
    Titlefy.Data.Entities.Orders.OrderLookupCodes:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/MongoDB.Bson.ObjectId'
        createdDate:
          type: string
          format: date-time
        createdByUser:
          type:
          - string
          - 'null'
        lastUpdatedDate:
          type: string
          format: date-time
        lastUpdatedByUser:
          type:
          - string
          - 'null'
        entityId:
          type: integer
          format: int32
        entityType:
          $ref: '#/components/schemas/Flueid.Pro.Constants.EntityConstants.EntityType'
        lookupCodes:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Titlefy.Data.Entities.Orders.OrderLookupCodeRole'
      additionalProperties: false
    Titlefy.Core.Constants.Orders.OrderRole:
      enum:
      - 0
      - 1
      - 2
      - 4
      - 5
      - 6
      - 7
      - 11
      - 12
      - 14
      - 15
      - 16
      - 17
      - 18
      - 19
      - 20
      - 21
      - 22
      - 23
      - 29
      - 50
      - 51
      - 52
      - 53
      - 54
      - 55
      - 99
      type: integer
      format: int32
    Flueid.Pro.Constants.EntityConstants.EntityType:
      enum:
      - 10
      - 20
      - 30
      - 40
      - 50
      - 60
      - 9999
      type: integer
      format: int32
    Titlefy.Data.Entities.Orders.OrderLookupCodeRole:
      type: object
      properties:
        orderRole:
          $ref: '#/components/schemas/Titlefy.Core.Constants.Orders.OrderRole'
        orderRoleDescription:
          type:
          - string
          - 'null'
          readOnly: true
        orderRoleAbbreviation:
          type:
          - string
          - 'null'
          readOnly: true
        lookupCode:
          type:
          - string
          - 'null'
      additionalProperties: false