Northmill Booking Orders API

The BookingOrders API from Northmill — 6 operation(s) for bookingorders.

Operations 10

GET /v2/bookingorders Get all bookinging orders. #
PUT /v2/bookingorders Update list of bookingorders. #
POST /v2/bookingorders Create bookingorders. #
GET /v2/stores/{externalStoreId}/bookingorders Get all bookinging orders. #
PUT /v2/stores/{externalStoreId}/bookingorders Update list of bookingorders. #
POST /v2/stores/{externalStoreId}/bookingorders Create bookingorders. #
GET /v2/bookingorders/byExternalReference/{externalReference} Get a order. #
GET /v2/stores/{externalStoreId}/bookingorders/byExternalReference/{externalReference} Get a order. #
GET /v2/bookingorders/byId/{Id} Get a order. #
GET /v2/stores/{externalStoreId}/bookingorders/byId/{Id} Get a 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/northmill-bookingorders-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-bookingorders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v2
  title: MoreFlo.Public.Api Booking Orders API
servers:
- url: https://api.moreflo.com
tags:
- name: BookingOrders
paths:
  /v2/bookingorders:
    get:
      tags:
      - BookingOrders
      summary: Get all bookinging orders.
      operationId: BookingOrders_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: updatedSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - name: startTimeSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - 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.BookingOrdersResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
    put:
      tags:
      - BookingOrders
      summary: Update list of bookingorders.
      operationId: BookingOrders_Update
      parameters:
      - 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.OrdersResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrdersResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrdersResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrdersResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
        description: List of bookingorders to update data.
        required: true
    post:
      tags:
      - BookingOrders
      summary: Create bookingorders.
      operationId: BookingOrders_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.BookingOrdersResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
        description: List of BookingOrder to create.
        required: true
  /v2/stores/{externalStoreId}/bookingorders:
    get:
      tags:
      - BookingOrders
      summary: Get all bookinging orders.
      operationId: BookingOrders_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: updatedSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - name: startTimeSince
        in: query
        description: ''
        required: false
        schema:
          type: string
          format: date-time
      - 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.BookingOrdersResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
    put:
      tags:
      - BookingOrders
      summary: Update list of bookingorders.
      operationId: BookingOrders_Update
      parameters:
      - 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.OrdersResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrdersResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrdersResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrdersResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
        description: List of bookingorders to update data.
        required: true
    post:
      tags:
      - BookingOrders
      summary: Create bookingorders.
      operationId: BookingOrders_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.BookingOrdersResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrdersResult'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          application/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          text/xml:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
          application/x-www-form-urlencoded:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderCreate'
        description: List of BookingOrder to create.
        required: true
  /v2/bookingorders/byExternalReference/{externalReference}:
    get:
      tags:
      - BookingOrders
      summary: Get a order.
      operationId: BookingOrders_GetByExternalReference
      parameters:
      - name: externalReference
        in: path
        description: External reference of the service order.
        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.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'
  /v2/stores/{externalStoreId}/bookingorders/byExternalReference/{externalReference}:
    get:
      tags:
      - BookingOrders
      summary: Get a order.
      operationId: BookingOrders_GetByExternalReference
      parameters:
      - name: externalReference
        in: path
        description: External reference of the service order.
        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.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'
  /v2/bookingorders/byId/{Id}:
    get:
      tags:
      - BookingOrders
      summary: Get a order.
      operationId: BookingOrders_Get
      parameters:
      - name: Id
        in: path
        description: External reference
        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.OrderResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrderResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrderResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrderResult'
  /v2/stores/{externalStoreId}/bookingorders/byId/{Id}:
    get:
      tags:
      - BookingOrders
      summary: Get a order.
      operationId: BookingOrders_Get
      parameters:
      - name: Id
        in: path
        description: External reference
        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.OrderResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrderResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrderResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrderResult'
components:
  schemas:
    MoreFlo.Models.InterfaceModels.BookingOrderRow:
      description: Represents a row in a booking order, detailing information about a specific article.
      type: object
      properties:
        ArticleNumber:
          description: The article number.
          type: string
        ArticleName:
          description: The name of the article.
          type: string
        Quantity:
          format: double
          description: The quantity of the article.
          type: number
        UnitAmountInclVatInclDiscount:
          format: double
          description: The unit amount including VAT and discount.
          type: number
        UnitAmountInclVatExclDiscount:
          format: double
          description: The unit amount including VAT but excluding discount.
          type: number
        VatRate:
          format: double
          description: The VAT rate applied to the article.
          type: number
        TotalDiscountAmount:
          format: double
          description: The total discount amount applied to the article.
          type: number
        TotalAmountInclVatInclDiscount:
          format: double
          description: The total amount including VAT and discount for the specified quantity.
          type: number
        ReceiptNote:
          description: A note related to the receipt of the article.
          type: string
    MoreFlo.Models.InterfaceModels.BookingOrderResult:
      description: Represents the result of an operation involving a BookingOrder entity.
      type: object
      properties:
        BookingOrder:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrder'
          description: The BookingOrder entity resulting from the operation.
        Id:
          description: The unique identifier of the BookingOrder.
          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
    MoreFlo.Models.InterfaceModels.OrderRow:
      description: Represents a row within an order, detailing information about a specific item included in the order.
      type: object
      properties:
        ArticleNumber:
          description: The article number of the item.
          type: string
        ArticleName:
          description: The name of the item.
          type: string
        UnitAmountInclVatExclDiscount:
          format: double
          description: The unit amount of the item, including VAT but excluding discount.
          type: number
        Discount:
          format: double
          description: The discount applied to the item.
          type: number
        VatRate:
          format: double
          description: The VAT rate applied to the item.
          type: number
        Quantity:
          format: double
          description: The quantity of the item.
          type: number
        SerialNumber:
          description: The serial number of the item.
          type: string
        RowSum:
          format: double
          description: The sum of the row.
          type: number
        ReceiptNote:
          description: A note or text associated with the item, typically a text row.
          type: string
    MoreFlo.Models.InterfaceModels.OrderResult:
      description: 'Represents the result of an operation that returns a single order.

        This class encapsulates an Order object and its unique identifier, typically used in API responses for single order operations.'
      type: object
      properties:
        Order:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Order'
          description: The Order object containing the order data.
        Id:
          description: The unique identifier of the order.
          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
    MoreFlo.Models.InterfaceModels.BookingOrder:
      description: Represents a booking order, containing information about a customer's reservation.
      required:
      - Customer
      type: object
      properties:
        Id:
          description: The unique identifier of the booking order, set by MoreFlo.
          type: string
        ExternalReference:
          description: 'The external reference or order identifier from the ordering system.

            Must be set during creation.'
          type: string
        Customer:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Customer'
          description: The customer associated with the booking order, either by MoreFlo's CustomerNumber or the system's ReferenceNumber.
        BookableResourceId:
          description: The identifier of the bookable resource associated with the order.
          type: string
        OrderNumber:
          format: int32
          description: The order number, set by MoreFlo.
          type: integer
        CreatedTime:
          format: date-time
          description: The time when the booking order was created, set by MoreFlo.
          type: string
        UpdatedTime:
          format: date-time
          description: The time when the booking order was last updated, set by MoreFlo.
          type: string
        ReadyDate:
          format: date-time
          description: The date when the order is expected to be ready.
          type: string
        CancellationLatestTime:
          format: date-time
          description: The latest time for cancellation of the booking order.
          type: string
        ConfirmationExpireTime:
          format: date-time
          description: The time when the confirmation for the booking order expires.
          type: string
        StartTime:
          format: date-time
          description: The start time of the booking.
          type: string
        StopTime:
          format: date-time
          description: The end time of the booking.
          type: string
        CustomerNote:
          description: A note from the customer regarding the booking order.
          maxLength: 4096
          minLength: 0
          type: string
        OurReference:
          description: The reference used by the ordering system.
          maxLength: 128
          minLength: 0
          type: string
        YourReference:
          description: The reference used by your system.
          maxLength: 128
          minLength: 0
          type: string
        Note:
          description: A general note regarding the booking order.
          maxLength: 4096
          minLength: 0
          type: string
        OrderDiscountPercent:
          format: double
          description: The discount percentage applied to the entire order.
          type: number
        State:
          description: The current state of the booking order.
          enum:
          - New
          - WaitingConfirmation
          - Confirmed
          - Completed
          - Cancelled
          type: string
        Rows:
          description: A list of rows containing details about the articles in the booking order.
          type: array
          items:
            $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderRow'
        BillingAddress:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BillingAddress'
          description: The billing address for the booking order.
        ShippingAddress:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ShippingAddress'
          description: The shipping address for the booking order.
        PaymentReference:
          description: A reference for the payment associated with the booking order.
          maxLength: 512
          minLength: 0
          type: string
        PaymentOption:
          description: The payment option used for the booking order.
          enum:
          - NotSet
          - Web
          - Invoice
          - Cashier
          type: string
        PaymentOrigin:
          description: The origin of the payment.
          maxLength: 512
          minLength: 0
          type: string
        PaymentStatus:
          description: The status of the payment.
          enum:
          - NotSet
          - NotPaid
          - FullyPaid
          - Refunded
          type: string
        CancellationSource:
          description: 'The source that cancelled the booking order (e.g. "Staff", "ExternalApi").

            Set automatically if not provided when state changes to Cancelled.'
          maxLength: 64
          minLength: 0
          type: string
        CancellationLink:
          description: A link for cancelling the booking order.
          type: string
        CancellationLinkBaseURL:
          description: The base URL for the cancellation link.
          type: string
    MoreFlo.Models.InterfaceModels.Address:
      type: object
      properties:
        Name:
          type: string
        Address1:
          type: string
        Address2:
          type: string
        PostCode:
          type: string
        City:
          type: string
        Country:
          type: string
        Email:
          type: string
        Telephone1:
          type: string
        Telephone2:
          type: string
        Mobile:
          type: string
        Fax:
          type: string
    MoreFlo.Models.InterfaceModels.BookingOrderCreate:
      description: Represents the data required to create a new booking order.
      required:
      - ExternalReference
      - Customer
      type: object
      properties:
        ExternalReference:
          description: 'The external reference or order number from another system.

            This is a required field.'
          type: string
        UpdateOnExisting:
          description: Indicates whether to update an existing booking order if one with the same number already exists.
          type: boolean
        Id:
          description: The unique identifier of the booking order, set by MoreFlo.
          type: string
        Customer:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Customer'
          description: The customer associated with the booking order, either by MoreFlo's CustomerNumber or the system's ReferenceNumber.
        BookableResourceId:
          description: The identifier of the bookable resource associated with the order.
          type: string
        OrderNumber:
          format: int32
          description: The order number, set by MoreFlo.
          type: integer
        CreatedTime:
          format: date-time
          description: The time when the booking order was created, set by MoreFlo.
          type: string
        UpdatedTime:
          format: date-time
          description: The time when the booking order was last updated, set by MoreFlo.
          type: string
        ReadyDate:
          format: date-time
          description: The date when the order is expected to be ready.
          type: string
        CancellationLatestTime:
          format: date-time
          description: The latest time for cancellation of the booking order.
          type: string
        ConfirmationExpireTime:
          format: date-time
          description: The time when the confirmation for the booking order expires.
          type: string
        StartTime:
          format: date-time
          description: The start time of the booking.
          type: string
        StopTime:
          format: date-time
          description: The end time of the booking.
          type: string
        CustomerNote:
          description: A note from the customer regarding the booking order.
          maxLength: 4096
          minLength: 0
          type: string
        OurReference:
          description: The reference used by the ordering system.
          maxLength: 128
          minLength: 0
          type: string
        YourReference:
          description: The reference used by your system.
          maxLength: 128
          minLength: 0
          type: string
        Note:
          description: A general note regarding the booking order.
          maxLength: 4096
          minLength: 0
          type: string
        OrderDiscountPercent:
          format: double
          description: The discount percentage applied to the entire order.
          type: number
        State:
          description: The current state of the booking order.
          enum:
          - New
          - WaitingConfirmation
          - Confirmed
          - Completed
          - Cancelled
          type: string
        Rows:
          description: A list of rows containing details about the articles in the booking order.
          type: array
          items:
            $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingOrderRow'
        BillingAddress:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BillingAddress'
          description: The billing address for the booking order.
        ShippingAddress:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.ShippingAddress'
          description: The shipping address for the booking order.
        PaymentReference:
          description: A reference for the payment associated with the booking order.
          maxLength: 512
          minLength: 0
          type: string
        PaymentOption:
          description: The payment option used for the booking order.
          enum:
          - NotSet
          - Web
          - Invoice
          - Cashier
          type: string
        PaymentOrigin:
          description: The origin of the payment.
          maxLength: 512
          minLength: 0
          type: string
        PaymentStatus:
          description: The status of the payment.
          enum:
          - NotSet
          - NotPaid
          - FullyPaid
          - Refunded
          type: string
        CancellationSource:
          description: 'The source that cancelled the booking order (e.g. "Staff", "ExternalApi").

            Set automatically if not provided when state changes to Cancelled.'
          maxLength: 64
          minLength: 0
          type: string
        CancellationLink:
          description: A link for cancelling the booking order.
          type: string
        CancellationLinkBaseURL:
          description: The base URL for the cancellation link.
          type: string
    MoreFlo.Models.InterfaceModels.OrdersResult:
      description: 'Represents a paginated result containing a list of order results.

        This class is used to return a collection of orders, along with pagination information, in API responses.'
      type: object
      properties:
        ExtraInformation:
          description: A list of extra information or messages related to the paginated result.
          type: array
          items:
            type: string
        list:
          description: The list of data items for the current page.
          type: array
          items:
            $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.OrderResult'
        Page:
          format: int32
          description: The current page number.
          type: integer
        Total:
          format: int32
          description: The total number of pages available.
          type: integer
        PageSize:
          format: int32
          description: The number of data items per page.
          type: integer
    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:
          des

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