Brickwork Admin Store Types API
The Admin Store Types API from Brickwork — 3 operation(s) for admin store types.
The Admin Store Types API from Brickwork — 3 operation(s) for admin store types.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/brickwork-admin-store-types-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Brickwork Admin Appointments Admin Store Types 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 Types
paths:
/api/v3/admin/types:
get:
summary: Type List
operationId: GetApiV3AdminTypes
tags:
- Admin Store Types
parameters:
- name: locale
in: query
required: false
schema:
type: string
description: The locale for store data display
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
types:
type: array
description: A list of store type objects
security:
- apiKeyAuth: []
post:
summary: Create Type
operationId: PostApiV3AdminTypes
tags:
- Admin Store Types
requestBody:
content:
application/json:
schema:
type: object
properties:
locale:
type: string
description: The locale for store data display
id:
type: integer
description: Type Id
name:
type: string
description: Type Name
priority:
type: integer
description: Type Order Number
code:
type: string
description: Internal Id
image_url:
type: string
description: Image URL for Type
map_pin_url:
type: string
description: Map Pin Url for Type (Display for map)
required:
- id
- name
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
id:
type: integer
description: Type Id
name:
type: string
description: Name
priority:
type: integer
description: Type Order Number
code:
type: string
description: Internal Id
image_url:
type: string
description: Image URL for Type
map_pin_url:
type: string
description: Map Pin Url for Type (Display for map)
security:
- apiKeyAuth: []
/api/v3/admin/types/by_code/{code}:
get:
summary: Show Type by Code
operationId: GetApiV3AdminTypesBy_codeCode
tags:
- Admin Store Types
parameters:
- name: code
in: path
required: true
schema:
type: string
- name: locale
in: query
required: false
schema:
type: string
description: The locale for store data display
- name: type_code
in: query
required: true
schema:
type: string
description: Code of Company Type
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
id:
type: integer
description: Type Id
name:
type: string
description: Type Name
priority:
type: integer
description: Type Order Number
code:
type: string
description: Internal Id
image_url:
type: string
description: Image URL for Type
map_pin_url:
type: string
description: Map Pin Url for Type (Display for map)
security:
- apiKeyAuth: []
/api/v3/admin/types/{id}:
get:
summary: Show Type
operationId: GetApiV3AdminTypesId
tags:
- Admin Store Types
parameters:
- name: id
in: path
required: true
schema:
type: string
- name: locale
in: query
required: false
schema:
type: string
description: The locale for store data display
- name: type_id
in: query
required: true
schema:
type: string
description: Id of Company Type
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
id:
type: integer
description: Type Id
name:
type: string
description: Type Name
priority:
type: integer
description: Type Order Number
code:
type: string
description: Internal Id
image_url:
type: string
description: Image URL for Type
map_pin_url:
type: string
description: Map Pin Url for Type (Display for map)
security:
- apiKeyAuth: []
put:
summary: Update Type
operationId: PutApiV3AdminTypesId
tags:
- Admin Store Types
parameters:
- name: id
in: path
required: true
schema:
type: integer
description: Type Id
requestBody:
content:
application/json:
schema:
type: object
properties:
locale:
type: string
description: The locale for store data display
name:
type: string
description: Type Name
priority:
type: integer
description: Type Order Number
code:
type: string
description: Internal Id
image_url:
type: string
description: Image URL for Type
map_pin_url:
type: string
description: Map Pin Url for Type (Display for map)
required:
- name
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: object
properties:
id:
type: integer
description: Type Id
name:
type: string
description: Type Name
priority:
type: integer
description: Type Order Number
code:
type: string
description: Internal Id
image_url:
type: string
description: Image URL for Type
map_pin_url:
type: string
description: Map Pin Url for Type (Display for map)
security:
- apiKeyAuth: []
components:
securitySchemes:
apiKeyAuth:
type: apiKey
in: query
name: api_key
description: Company API key passed as the api_key query parameter.