Noosh Order API

The Order API from Noosh — 9 operation(s) for order.

Operations 12

GET /v1/workgroups/{workgroup_id}/buyOrders List the buy orders of workgroup #
GET /v1/workgroups/{workgroup_id}/buyOrders/{order_id} Get a specific buy order of workgroup #
GET /v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders List the buy orders #
POST /v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders Create a quick buy order #
GET /v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders/{order_id} Get a specific buy order #
PUT /v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders/{order_id} Update a specific buy order #
GET /v1/workgroups/{workgroup_id}/projects/{project_id}/orders/{order_id} Get a specific buy/sell order #
GET /v1/workgroups/{workgroup_id}/projects/{project_id}/sellOrders List the sell orders #
GET /v1/workgroups/{workgroup_id}/projects/{project_id}/sellOrders/{order_id} Get a specific sell order #
PUT /v1/workgroups/{workgroup_id}/projects/{project_id}/sellOrders/{order_id} Update / Accept or Reject a specific sell order #
GET /v1/workgroups/{workgroup_id}/sellOrders List the sell orders of workgrop #
GET /v1/workgroups/{workgroup_id}/sellOrders/{order_id} Get a specific sell order #

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/noosh-order-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

noosh-order-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Full description of Noosh API
  version: '1.0'
  title: Noosh API application Order API
  contact: {}
  x-api-evangelist-note: Harvested verbatim from https://api.noosh.com/api/swagger.json on 2026-08-13. The published document declares host example.com:80 and basePath /v1, which are build-time placeholders (the same document is mirrored by APIs.guru with host noosh.local:80). host has been set to api.noosh.com — the host that actually serves this document and the Swagger UI at /api/developer/index.html — and basePath removed because every path already carries its own version prefix (/v1, /1.1, /1.2, /3). The unmodified document is preserved at openapi/_original/noosh-openapi.json. Every route returns HTTP 403 to unauthenticated callers (AWS API Gateway + CloudFront), so the deployment path prefix could not be confirmed live.
servers:
- url: https://api.noosh.com
tags:
- name: Order
paths:
  /v1/workgroups/{workgroup_id}/buyOrders:
    get:
      tags:
      - Order
      summary: List the buy orders of workgroup
      description: List the buy orders of workgroup
      operationId: getBuyOrderListOfWorkgroup
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderWorkgroupLevelListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
  /v1/workgroups/{workgroup_id}/buyOrders/{order_id}:
    get:
      tags:
      - Order
      summary: Get a specific buy order of workgroup
      description: Get a specific buy order of workgroup
      operationId: getBuyOrderOfWorkgroup
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: order_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderExpandWorkgroupLevelVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
  /v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders:
    get:
      tags:
      - Order
      summary: List the buy orders
      description: List the buy orders
      operationId: getBuyOrderList
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
    post:
      tags:
      - Order
      summary: Create a quick buy order
      description: Create a quick buy order
      operationId: postBuyOrder
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderPO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderPO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderPO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderPO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderPO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderPO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderPO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderPO'
        '422':
          description: Invalid data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderPO'
          application/x-json-smile:
            schema:
              $ref: '#/components/schemas/OrderPO'
          application/xml:
            schema:
              $ref: '#/components/schemas/OrderPO'
          text/xml:
            schema:
              $ref: '#/components/schemas/OrderPO'
          application/x-yaml:
            schema:
              $ref: '#/components/schemas/OrderPO'
          text/x-yaml:
            schema:
              $ref: '#/components/schemas/OrderPO'
          text/csv:
            schema:
              $ref: '#/components/schemas/OrderPO'
  /v1/workgroups/{workgroup_id}/projects/{project_id}/buyOrders/{order_id}:
    get:
      tags:
      - Order
      summary: Get a specific buy order
      description: Get a specific buy order
      operationId: getBuyOrder
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: order_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
    put:
      tags:
      - Order
      summary: Update a specific buy order
      description: Update a specific buy order
      operationId: putBuyOrder
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: order_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderUpdPersistVO'
          application/x-json-smile:
            schema:
              $ref: '#/components/schemas/OrderUpdPersistVO'
          application/xml:
            schema:
              $ref: '#/components/schemas/OrderUpdPersistVO'
          text/xml:
            schema:
              $ref: '#/components/schemas/OrderUpdPersistVO'
          application/x-yaml:
            schema:
              $ref: '#/components/schemas/OrderUpdPersistVO'
          text/x-yaml:
            schema:
              $ref: '#/components/schemas/OrderUpdPersistVO'
          text/csv:
            schema:
              $ref: '#/components/schemas/OrderUpdPersistVO'
  /v1/workgroups/{workgroup_id}/projects/{project_id}/orders/{order_id}:
    get:
      tags:
      - Order
      summary: Get a specific buy/sell order
      description: Get a specific buy/sell order
      operationId: getOrder
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: order_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderDetailWithIndicatorVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
  /v1/workgroups/{workgroup_id}/projects/{project_id}/sellOrders:
    get:
      tags:
      - Order
      summary: List the sell orders
      description: List the sell orders
      operationId: getSellOrderList
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderListVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderListVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
  /v1/workgroups/{workgroup_id}/projects/{project_id}/sellOrders/{order_id}:
    get:
      tags:
      - Order
      summary: Get a specific sell order
      description: Get a specific sell order
      operationId: getSellOrder
      parameters:
      - name: workgroup_id
        in: path
        required: true
        schema:
          type: string
      - name: project_id
        in: path
        required: true
        schema:
          type: string
      - name: order_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful retrieval
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/OrderDetailVO'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
        '404':
          description: There are not any result matching your search condition
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-json-smile:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/xml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            application/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/x-yaml:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            text/csv:
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
            '*/*':
              schema:
                $ref: '#/components/schemas/HTTPStatusVO'
    put:
      tags:
      - Order
      summary: Update / Accept or Reject a specific sell order
      description: Update / Accept or Reject a specific s

# --- truncated at 32 KB (83 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/noosh/refs/heads/main/openapi/noosh-order-api-openapi.yml