Northmill Settings API

The Settings API from Northmill — 4 operation(s) for settings.

Operations 4

GET /v2/settings Fetch settings. #
GET /v2/stores/{externalStoreId}/settings Fetch settings. #
GET /v2/bookings/settings Fetch booking settings. #
GET /v2/stores/{externalStoreId}/bookings/settings Fetch booking settings. #

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-settings-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-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v2
  title: MoreFlo.Public.Api Settings API
servers:
- url: https://api.moreflo.com
tags:
- name: Settings
paths:
  /v2/settings:
    get:
      tags:
      - Settings
      summary: Fetch settings.
      operationId: Settings_Get
      parameters:
      - name: externalStoreId
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
  /v2/stores/{externalStoreId}/settings:
    get:
      tags:
      - Settings
      summary: Fetch settings.
      operationId: Settings_Get
      parameters:
      - name: externalStoreId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SettingsResult'
  /v2/bookings/settings:
    get:
      tags:
      - Settings
      summary: Fetch booking settings.
      operationId: Settings_GetBookingSettings
      parameters:
      - name: externalStoreId
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
  /v2/stores/{externalStoreId}/bookings/settings:
    get:
      tags:
      - Settings
      summary: Fetch booking settings.
      operationId: Settings_GetBookingSettings
      parameters:
      - name: externalStoreId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
            text/json:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.BookingSettingsResult'
components:
  schemas:
    MoreFlo.Models.InterfaceModels.Settings:
      description: 'Represents general application or system settings.

        This class encapsulates various configuration options, such as accounting integration, currency code, and company information.'
      type: object
      properties:
        AccountingIntegrationEnabled:
          description: Indicates whether accounting integration is enabled.
          type: boolean
        CurrencyCode:
          description: The currency code used by the system.
          type: string
        PublicUrlOrHostPart:
          description: The public URL or host part of the application.
          type: string
        CompanyName:
          description: The name of the company.
          type: string
        OrganizationNumber:
          description: The organization number of the company.
          type: string
        PartialRefundArticleNumber:
          description: The article number used for partial refunds.
          type: string
        OrderExpireTimePartEnabled:
          description: Indicates whether the order expiration time part is enabled.
          type: boolean
        ShippingArticleNumber:
          description: The article number used for shipping costs.
          type: string
        IsTakeAwayEnabled:
          description: Specifies whether the takeaway functionality is enabled.
          type: boolean
    MoreFlo.Models.InterfaceModels.SettingsResult:
      description: 'Represents the result of an operation that returns application settings.

        This class encapsulates a Settings object, typically used in API responses related to retrieving or managing application-wide settings.'
      type: object
      properties:
        Settings:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.Settings'
          description: The Settings object containing the application settings data.
        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.BookingSettingsResult:
      description: 'Represents the result of an operation that returns booking settings.

        This class encapsulates a SubscriberBookingSetting object, typically used in API responses related to retrieving or managing booking configuration.'
      type: object
      properties:
        Settings:
          $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.SubscriberBookingSetting'
          description: The SubscriberBookingSetting object containing the booking settings data.
        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.SubscriberBookingSetting:
      description: Represents booking settings for a subscriber, including customer booking options, visibility, appearance, content, and company information.
      type: object
      properties:
        CustomerBookingEnabled:
          description: Indicates whether booking is enabled for external customers.
          type: boolean
        CustomerBookingRequiresLogin:
          description: Indicates whether customers are required to have an account to make a booking.
          type: boolean
        VisibibleInMoreFloBookingPortal:
          description: Indicates whether the store should be visible in the MoreFlo booking portal.
          type: boolean
        SelectResourceStyleAuto:
          description: Determines if the resource selection style is automatic.
          type: boolean
        FrontPageTextHtml:
          description: HTML formatted text for the front page.
          type: string
        CreatedTime:
          format: date-time
          description: The time when the booking settings were created.
          type: string
        LastUpdatedTime:
          format: date-time
          description: The time when the booking settings were last updated.
          type: string
        CancellationInformationTextHtml:
          description: HTML formatted text for cancellation information.
          maxLength: 65535
          minLength: 0
          type: string
        TermOfPurchaseTextHtml:
          description: HTML formatted text for terms of purchase.
          maxLength: 65535
          minLength: 0
          type: string
        BookingThankYouInfoTextHtml:
          description: HTML formatted text for booking thank you information.
          maxLength: 65535
          minLength: 0
          type: string
        BookingExtraInfo:
          description: Extra information for booking.
          maxLength: 2048
          minLength: 0
          type: string
        OpeningHoursInformation:
          description: Plain text multi-line information about opening hours.
          type: string
        CompanyName:
          description: The name of the company.
          type: string
        Address1:
          description: The first line of the company's address.
          type: string
        Address2:
          description: The second line of the company's address (optional).
          type: string
        PostCode:
          description: The postal code of the company's address.
          type: string
        City:
          description: The city of the company's address.
          type: string
        Country:
          description: The country of the company's address.
          type: string
        Telephone:
          description: The telephone number of the company.
          type: string
        Email:
          description: The email address of the company.
          type: string
        Gallery:
          description: A list of files representing the gallery images.
          type: array
          items:
            $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.AttachedFile'
        Logotypes:
          description: A list of files representing the company's logotypes.
          type: array
          items:
            $ref: '#/components/schemas/MoreFlo.Models.InterfaceModels.AttachedFile'
    MoreFlo.Models.InterfaceModels.AttachedFile:
      type: object
      properties:
        Id:
          type: string
        Name:
          type: string
        Description:
          type: string
        CreatedTime:
          format: date-time
          type: string
        ContentType:
          type: string
        IsMainFile:
          type: boolean
        URL:
          type: string
  securitySchemes:
    basic:
      type: http
      scheme: basic
      description: Basic HTTP Authentication