Brickwork Admin Store Services API

The Admin Store Services API from Brickwork — 2 operation(s) for admin store services.

Operations 4

GET /api/v3/admin/stores/{store_id_or_number}/store_services List Store Services #
POST /api/v3/admin/stores/{store_id_or_number}/store_services Create Store Service #
GET /api/v3/admin/stores/{store_id_or_number}/store_services/{id} Show Store Service #
PUT /api/v3/admin/stores/{store_id_or_number}/store_services/{id} Update Store Service #

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/brickwork-admin-store-services-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

brickwork-admin-store-services-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Brickwork Admin Appointments Admin Store Services API
  version: v3
  description: Brickwork (now part of DevHub) omnichannel retail platform API v3. Powers store pages, store locators, appointments, events, RSVPs, in-store services, customers, and local store content for physical retail. Admin endpoints are authenticated with an api_key; front-end store endpoints surface public store, service, and event data. Derived from the provider-published apiDoc reference at production.brickworksoftware.com/api_docs.
  contact:
    name: Brickwork / DevHub
    url: https://www.devhub.com/
  x-apievangelist:
    generated: '2026-07-18'
    method: searched
    source: https://production.brickworksoftware.com/api_docs/ (apiDoc api_data.json)
servers:
- url: https://production.brickworksoftware.com
  description: Production
tags:
- name: Admin Store Services
paths:
  /api/v3/admin/stores/{store_id_or_number}/store_services:
    get:
      summary: List Store Services
      operationId: GetApiV3AdminStoresStore_id_or_numberStore_services
      tags:
      - Admin Store Services
      description: 'Example: `http://company.com/api/v3/admin/stores/:store_id/store_services`


        Example: `http://company.com/api/v3/admin/stores/:store_number/store_services?store_number=true`'
      parameters:
      - name: store_id_or_number
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  store_services:
                    type: array
                    description: A list of the stores services
                  private:
                    type: boolean
                    description: T/F Is the service private?
      security:
      - apiKeyAuth: []
    post:
      summary: Create Store Service
      operationId: PostApiV3AdminStoresStore_id_or_numberStore_services
      tags:
      - Admin Store Services
      description: 'Example: `http://company.com/api/v3/admin/stores/:store_id/store_services/:id`


        Example: `http://company.com/api/v3/admin/stores/:store_number/store_services/:id?store_number=true`'
      parameters:
      - name: store_id_or_number
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                service_id:
                  type: integer
                  description: The given ID from the company object
                appointments_enabled:
                  type: boolean
                  description: T/F
                associate_required:
                  type: boolean
                  description: T/F
              required:
              - service_id
              - appointments_enabled
              - associate_required
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: The given ID from the store object
                  service_id:
                    type: integer
                    description: The given ID from the company object
                  store_id:
                    type: integer
                    description: The store id that has this service
                  appointments_enabled:
                    type: boolean
                    description: T/F
                  associate_required:
                    type: boolean
                    description: T/F
                  store_service_image:
                    type: string
                    description: ''
                  allow_anonymous:
                    type: boolean
                    description: Allow to be booked without customer data
                  private:
                    type: boolean
                    description: T/F Is the service private?
                  created_at:
                    type: string
                    description: ''
                  updated_at:
                    type: string
                    description: ''
                  nextgen_uri:
                    type: string
                    description: Nextgen StoreService URI
                  organization_nextgen_id:
                    type: string
                    description: Nextgen Organization Id
                  set_custom_capacity:
                    type: boolean
                    description: ''
                  override_store_capacity:
                    type: boolean
                    description: ''
                  total_capacity:
                    type: integer
                    description: ''
                  capacity_type:
                    type: string
                    description: ''
                  online_capacity_pct:
                    type: number
                    description: ''
                  online_capacity:
                    type: integer
                    description: ''
                  waitlist:
                    type: boolean
                    description: ''
                  required_lead_time:
                    type: integer
                    description: ''
                  book_with:
                    type: string
                    description: ''
                  auto_confirm_appt_requests:
                    type: boolean
                    description: ''
                  allow_associate_selection:
                    type: boolean
                    description: ''
                  store_capacity:
                    type: object
                    description: ''
      security:
      - apiKeyAuth: []
  /api/v3/admin/stores/{store_id_or_number}/store_services/{id}:
    get:
      summary: Show Store Service
      operationId: GetApiV3AdminStoresStore_id_or_numberStore_servicesId
      tags:
      - Admin Store Services
      description: 'Example: `http://company.com/api/v3/admin/stores/:store_id/store_services/:id`


        Example: `http://company.com/api/v3/admin/stores/:store_number/store_services/:id?store_number=true`'
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: store_id_or_number
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: The given ID from the store object
                  service_id:
                    type: integer
                    description: The given ID from the company object
                  store_id:
                    type: integer
                    description: The store id that has this service
                  appointments_enabled:
                    type: boolean
                    description: T/F
                  associate_required:
                    type: boolean
                    description: T/F
                  store_service_image:
                    type: string
                    description: ''
                  allow_anonymous:
                    type: boolean
                    description: Allow to be booked without customer data
                  private:
                    type: boolean
                    description: T/F Is the service private?
                  created_at:
                    type: string
                    description: ''
                  updated_at:
                    type: string
                    description: ''
                  nextgen_uri:
                    type: string
                    description: Nextgen StoreService URI
                  organization_nextgen_id:
                    type: string
                    description: Nextgen Organization Id
                  set_custom_capacity:
                    type: boolean
                    description: ''
                  override_store_capacity:
                    type: boolean
                    description: ''
                  total_capacity:
                    type: integer
                    description: ''
                  capacity_type:
                    type: string
                    description: ''
                  online_capacity_pct:
                    type: number
                    description: ''
                  online_capacity:
                    type: integer
                    description: ''
                  waitlist:
                    type: boolean
                    description: ''
                  required_lead_time:
                    type: integer
                    description: ''
                  book_with:
                    type: string
                    description: ''
                  auto_confirm_appt_requests:
                    type: boolean
                    description: ''
                  allow_associate_selection:
                    type: boolean
                    description: ''
                  store_capacity:
                    type: object
                    description: ''
      security:
      - apiKeyAuth: []
    put:
      summary: Update Store Service
      operationId: PutApiV3AdminStoresStore_id_or_numberStore_servicesId
      tags:
      - Admin Store Services
      description: 'Example: `http://company.com/api/v3/admin/stores/:store_id/store_services/:id`


        Example: `http://company.com/api/v3/admin/stores/:store_number/store_services/:id?store_number=true`'
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: store_id_or_number
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                service_id:
                  type: integer
                  description: The given ID from the company object
                appointments_enabled:
                  type: boolean
                  description: T/F
                associate_required:
                  type: boolean
                  description: T/F
              required:
              - service_id
              - appointments_enabled
              - associate_required
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: The given ID from the store object
                  service_id:
                    type: integer
                    description: The given ID from the company object
                  store_id:
                    type: integer
                    description: The store id that has this service
                  appointments_enabled:
                    type: boolean
                    description: T/F
                  associate_required:
                    type: boolean
                    description: T/F
                  store_service_image:
                    type: string
                    description: ''
                  allow_anonymous:
                    type: boolean
                    description: Allow to be booked without customer data
                  private:
                    type: boolean
                    description: T/F Is the service private?
                  created_at:
                    type: string
                    description: ''
                  updated_at:
                    type: string
                    description: ''
                  nextgen_uri:
                    type: string
                    description: Nextgen StoreService URI
                  organization_nextgen_id:
                    type: string
                    description: Nextgen Organization Id
                  set_custom_capacity:
                    type: boolean
                    description: ''
                  override_store_capacity:
                    type: boolean
                    description: ''
                  total_capacity:
                    type: integer
                    description: ''
                  capacity_type:
                    type: string
                    description: ''
                  online_capacity_pct:
                    type: number
                    description: ''
                  online_capacity:
                    type: integer
                    description: ''
                  waitlist:
                    type: boolean
                    description: ''
                  required_lead_time:
                    type: integer
                    description: ''
                  book_with:
                    type: string
                    description: ''
                  auto_confirm_appt_requests:
                    type: boolean
                    description: ''
                  allow_associate_selection:
                    type: boolean
                    description: ''
                  store_capacity:
                    type: object
                    description: ''
      security:
      - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: query
      name: api_key
      description: Company API key passed as the api_key query parameter.