Brickwork Admin Groups API

The Admin Groups API from Brickwork — 2 operation(s) for admin groups.

Operations 4

GET /api/v3/admin/groups Groups List #
POST /api/v3/admin/groups Create Group #
GET /api/v3/admin/groups/{id} Show Group #
PUT /api/v3/admin/groups/{id} Update Group #

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-groups-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-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Brickwork Admin Appointments Admin Groups 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 Groups
paths:
  /api/v3/admin/groups:
    get:
      summary: Groups List
      operationId: GetApiV3AdminGroups
      tags:
      - Admin Groups
      parameters:
      - name: locale
        in: query
        required: false
        schema:
          type: string
        description: The locale for group data display
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  groups:
                    type: array
                    description: A list of the company store groups
      security:
      - apiKeyAuth: []
    post:
      summary: Create Group
      operationId: PostApiV3AdminGroups
      tags:
      - Admin Groups
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: Group name
                store_ids:
                  type: array
                  description: A list of the store ids
              required:
              - name
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: Group id
                  name:
                    type: string
                    description: Group name
                  store_ids:
                    type: array
                    description: A list of the store ids
                  created_at:
                    type: string
                    description: Group creation Datetime
                  updated_at:
                    type: string
                    description: Group last updated Datetime
      security:
      - apiKeyAuth: []
  /api/v3/admin/groups/{id}:
    get:
      summary: Show Group
      operationId: GetApiV3AdminGroupsId
      tags:
      - Admin Groups
      parameters:
      - name: locale
        in: query
        required: false
        schema:
          type: string
        description: The locale for group data display
      - name: id
        in: path
        required: true
        schema:
          type: integer
        description: ''
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: Group id
                  name:
                    type: string
                    description: Group name
                  store_ids:
                    type: array
                    description: A list of the store ids
                  created_at:
                    type: string
                    description: Group creation Datetime
                  updated_at:
                    type: string
                    description: Group last updated Datetime
      security:
      - apiKeyAuth: []
    put:
      summary: Update Group
      operationId: PutApiV3AdminGroupsId
      tags:
      - Admin Groups
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                  description: Group name
                store_ids:
                  type: array
                  description: A list of the store ids
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    description: Group id
                  name:
                    type: string
                    description: Group name
                  store_ids:
                    type: array
                    description: A list of the store ids
                  created_at:
                    type: string
                    description: Group creation Datetime
                  updated_at:
                    type: string
                    description: Group last updated Datetime
      security:
      - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: query
      name: api_key
      description: Company API key passed as the api_key query parameter.