Northmill Articles API

The Articles API from Northmill — 10 operation(s) for articles.

Operations 14

GET /v2/articles Get all articles. #
PUT /v2/articles Update articles. #
POST /v2/articles Create articles. #
GET /v2/stores/{externalStoreId}/articles Get all articles. #
PUT /v2/stores/{externalStoreId}/articles Update articles. #
POST /v2/stores/{externalStoreId}/articles Create articles. #
PUT /v2/articles/increasestock Update stock - increase stock. #
PUT /v2/stores/{externalStoreId}/articles/increasestock Update stock - increase stock. #
PUT /v2/articles/decreasestock Update stock - decrease stock. #
PUT /v2/stores/{externalStoreId}/articles/decreasestock Update stock - decrease stock. #
GET /v2/articles/{ArticleNumber} Hämta en artikel - se flagga. #
GET /v3/articles/article Hämta en artikel - se flagga. #
GET /v2/stores/{externalStoreId}/articles/{ArticleNumber} Hämta en artikel - se flagga. #
GET /v3/stores/{externalStoreId}/articles/article Hämta en artikel - se flagga. #

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/northmill-articles-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

northmill-articles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v2
  title: MoreFlo.Public.Api Articles API
servers:
- url: https://api.moreflo.com
tags:
- name: Articles
paths:
  /v2/articles:
    get:
      tags:
      - Articles
      summary: Get all articles.
      operationId: Articles_Get
      parameters:
      - name: page
        in: query
        description: Page starts from 0 , default 0.
        required: false
        schema:
          type: integer
          format: int32
      - name: pageSize
        in: query
        description: PageSize, default 100.
        required: false
        schema:
          type: integer
          format: int32
      - name: ArticleInfoUpdatedSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - name: QuantityUpdatedSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - name: ArticleType
        in: query
        description: ''
        required: false
        schema:
          type: string
      - name: ArticleGroup
        in: query
        description: ''
        required: false
        schema:
          type: string
      - name: externalStoreId
        in: query
        description: externalStoreId of the store, if multistore admin.
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
    put:
      tags:
      - Articles
      summary: Update articles.
      operationId: Articles_Update
      parameters:
      - name: externalStoreId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
        description: List of articles to update.
        required: true
    post:
      tags:
      - Articles
      summary: Create articles.
      operationId: Articles_Create
      parameters:
      - name: externalStoreId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
        description: List of articles to create.
        required: true
  /v2/stores/{externalStoreId}/articles:
    get:
      tags:
      - Articles
      summary: Get all articles.
      operationId: Articles_Get
      parameters:
      - name: page
        in: query
        description: Page starts from 0 , default 0.
        required: false
        schema:
          type: integer
          format: int32
      - name: pageSize
        in: query
        description: PageSize, default 100.
        required: false
        schema:
          type: integer
          format: int32
      - name: ArticleInfoUpdatedSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - name: QuantityUpdatedSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - name: ArticleType
        in: query
        description: ''
        required: false
        schema:
          type: string
      - name: ArticleGroup
        in: query
        description: ''
        required: false
        schema:
          type: string
      - name: externalStoreId
        in: path
        description: externalStoreId of the store, if multistore admin.
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesGetResult'
    put:
      tags:
      - Articles
      summary: Update articles.
      operationId: Articles_Update
      parameters:
      - name: externalStoreId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
        description: List of articles to update.
        required: true
    post:
      tags:
      - Articles
      summary: Create articles.
      operationId: Articles_Create
      parameters:
      - name: externalStoreId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticlesResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleCreate'
        description: List of articles to create.
        required: true
  /v2/articles/increasestock:
    put:
      tags:
      - Articles
      summary: Update stock - increase stock.
      operationId: Articles_IncreaseStock
      parameters:
      - name: externalStoreId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
        description: List of articleQuantityInfos that is to be relatively increased with current stock value.
        required: true
  /v2/stores/{externalStoreId}/articles/increasestock:
    put:
      tags:
      - Articles
      summary: Update stock - increase stock.
      operationId: Articles_IncreaseStock
      parameters:
      - name: externalStoreId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
        description: List of articleQuantityInfos that is to be relatively increased with current stock value.
        required: true
  /v2/articles/decreasestock:
    put:
      tags:
      - Articles
      summary: Update stock - decrease stock.
      operationId: Articles_DecreaseStock
      parameters:
      - name: externalStoreId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
        description: List of articleQuantityInfos that is to be relatively decreased with current stock value.
        required: true
  /v2/stores/{externalStoreId}/articles/decreasestock:
    put:
      tags:
      - Articles
      summary: Update stock - decrease stock.
      operationId: Articles_DecreaseStock
      parameters:
      - name: externalStoreId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleQuantityInfo'
        description: List of articleQuantityInfos that is to be relatively decreased with current stock value.
        required: true
  /v2/articles/{ArticleNumber}:
    get:
      tags:
      - Articles
      summary: Hämta en artikel - se flagga.
      operationId: Articles_Get
      parameters:
      - name: ArticleNumber
        in: path
        description: Artikelnummer på artikeln som skall hämtas.
        required: true
        schema:
          type: string
      - name: externalStoreId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
  /v3/articles/article:
    get:
      tags:
      - Articles
      summary: Hämta en artikel - se flagga.
      operationId: Articles_Get
      parameters:
      - name: ArticleNumber
        in: query
        description: Artikelnummer på artikeln som skall hämtas.
        required: true
        schema:
          type: string
      - name: externalStoreId
        in: query
        description: ''
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
  /v2/stores/{externalStoreId}/articles/{ArticleNumber}:
    get:
      tags:
      - Articles
      summary: Hämta en artikel - se flagga.
      operationId: Articles_Get
      parameters:
      - name: ArticleNumber
        in: path
        description: Artikelnummer på artikeln som skall hämtas.
        required: true
        schema:
          type: string
      - name: externalStoreId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
  /v3/stores/{externalStoreId}/articles/article:
    get:
      tags:
      - Articles
      summary: Hämta en artikel - se flagga.
      operationId: Articles_Get
      parameters:
      - name: ArticleNumber
        in: query
        description: Artikelnummer på artikeln som skall hämtas.
        required: true
        schema:
          type: string
      - name: externalStoreId
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleGetResult'
components:
  schemas:
    MoreFlo.Models.InterfaceModels.ArticleQuantityInfo:
      description: Represents article quantity information.
      required:
      - ArticleNumber
      - Quantity
      type: object
      properties:
        ArticleNumber:
          description: The unique article number.
          maxLength: 100
          minLength: 0
          type: string
        Quantity:
          format: double
          description: The quantity of the article.
          type: number
    MoreFlo.Models.InterfaceModels.ProductFile:
      type: object
      properties:
        Id:
          type: string
        Guid:
          type: string
        Name:
          type: string
        Description:
          type: string
        CreatedTime:
          format: date-time
          type: string
        ContentType:
          type: string
        IsMainFile:
          type: boolean
        URL:
          type: string
    MoreFlo.Models.InterfaceModels.ArticleResult:
      description: Represents the result of an operation involving an Article entity.
      type: object
      properties:
        Article:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Article'
          description: The Article entity resulting from the operation.
        ArticleNumber:
          description: The unique article number.
          type: string
        Success:
          description: Indicates whether the API operation was successful.
          type: boolean
        ExtraInformation:
          description: 'A list of extra information or messages related to the API operation result.

            This can include error messages, warnings, or informational notes.'
          type: array
          items:
            type: string
    xFlo.Models.Common.Models.Article.ArticleBarcode:
      description: Article barcode
      required:
      - Barcode
      type: object
      properties:
        Barcode:
          description: Article barcode
          maxLength: 20
          minLength: 0
          type: string
    MoreFlo.Models.InterfaceModels.Article:
      description: Represents an article with various properties.
      required:
      - ArticleNumber
      type: object
      properties:
        ArticleNumber:
          description: The unique article number.
          maxLength: 100
          minLength: 0
          type: string
        Quantity:
          format: double
          description: The quantity of the article.
          type: number
        SupplierArticleNumber:
          description: The supplier's article number.
          type: string
        SerialNumber:
          description: The serial number of the article.
          type: string
        BrandId:
          description: The brand identifier of the article.
          maxLength: 64
          minLength: 0
          type: string
        GroupId:
          description: The group identifier of the article.
          maxLength: 64
          minLength: 0
          type: string
        Location:
          description: Specifies the storage location or warehouse where the stock item is kept.
          maxLength: 50
          minLength: 0
          type: string
        ArticleName:
          description: The name of the article.
          maxLength: 60
          minLength: 0
          type: string
        ArticleDescription:
          description: The description or extra receipt text for the article.
          maxLength: 60
          minLength: 0
          type: string
        Unit:
          description: The unit of measurement for the article.
          maxLength: 30
          minLength: 0
          type: string
        ArticleGoodsType:
          description: Type of goods article, for example Tobacco
          enum:
          - NotSet
          - Other
          - Alcohol
          - Tobacco
          - Gambling
          - Hazardous
          type: string
        Barcode:
          description: Primary barcode for this article
          maxLength: 20
          minLength: 0
          type: string
        BarcodeAlternatives:
          description: Alternative barcodes for this article
          type: array
          items:
            $ref: '#/components/schemas/xFlo.Models.Common.Models.Article.ArticleBarcode'
        LocationId:
          description: The location identifier of the article.
          maxLength: 64
          minLength: 0
          type: string
        SupplierId:
          description: The supplier identifier of the article.
          type: string
        ProductModelReference:
          description: The product model reference for the article.
          type: string
        AccountCodeId:
          description: The account code identifier of the article.
          type: string
        InputPrice:
          format: double
          description: The input price of the article excluding VAT.
          type: number
        RecommendedPrice:
          format: double
          description: The recommended price of the article including VAT.
          type: number
        RetailPrice:
          format: double
          description: The retail price of the article including VAT.
          type: number
        ArticleType:
          description: The type of the article, see enumeration.
          enum:
          - Goods
          - Service
          - GiftCard
          - Prepay
          - ValueCard
          - GoodsMarginProfit
          - BuyGoodsMarginProfit
          - CommissionSale
          - CashRefundSlip
          type: string
        SubArticles:
          description: Sub-articles related to this article.
          type: string
        IsActive:
          description: Indicates whether the article is active or inactive.
          type: boolean
        UseScale:
          description: Indicates whether the article uses a scale.
          type: boolean
        AskForSerial:
          description: Indicates whether to ask for the serial number of the article.
          type: boolean
        Ackumulative:
          description: Indicates whether the article is accumulative.
          type: boolean
        IsWebshopArticle:
          description: Indicates whether the article is a webshop article.
          type: boolean
        IsStockItem:
          description: Must be set to true in order to have a quantity set.
          type: boolean
        CommissionValue:
          format: double
          description: The commission value of the article.
          type: number
        ConnectedCompany:
          description: The company the article belongs to (for multi-company setups).
          type: string
        BongPrinter:
          format: int32
          description: The bong printer associated with the article.
          type: integer
        BongNumberOfCopies:
          format: int32
          description: Number of bong (kitchen ticket) copies to print.
          type: integer
        BongText:
          description: The bong text for the article.
          type: string
        BongType:
          format: int32
          description: The bong type for the article.
          type: integer
        BongShowDialouge:
          description: Indicates whether to show the bong dialog.
          type: boolean
        IsOpenArticle:
          description: Indicates whether the article is an open article.
          type: boolean
        IsBookable:
          description: If article type is service, then the service can be bookable.
          type: boolean
        DisplayOrder:
          format: int32
          description: The display order of the article.
          type: integer
        ArticleBookingSettings:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ArticleBookingSettings'
          description: If article is bookable, then settings for booking defines default time and customer booking settings
        IsQuickButton:
          description: Determines if article should be shown as quick button in cashier.
          type: boole

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