Zoca Staff API

The Staff API from Zoca — 12 operation(s) for staff.

Operations 15

POST /staff Create a staff member at a business + location (member-first). #
GET /staff List staff members (by businessEntityId for rich view, else entityId) #
POST /staff/bulk Create multiple staff members in bulk #
PUT /staff/reorder Reorder staff members #
POST /staff/media Attach media to a staff member #
GET /staff/me Fetch the calling staff member's own profile. #
PATCH /staff/me Patch the calling staff member's own profile. #
GET /staff/directory List staff members at a business (cursor-paginated, rich view). #
GET /staff/{memberId} Fetch a single staff member by memberId (rich view). #
POST /staff/{memberId}/archive Archive a staff member at a business (soft-delete). #
POST /staff/{memberId}/unarchive Unarchive a staff member at a business. #
PATCH /staff/{id} Update a staff member by ID #
DELETE /staff/{id} Delete a staff member by ID (soft-delete) #
PATCH /staff/{id}/email Set a staff member’s email (first-time only, enables invites) #
DELETE /staff/{staffMemberId}/media/{mediaId} Delete media from a staff member #

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/zoca-staff-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

zoca-staff-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Zoca Platform Staff API
  description: 'The Zoca platform API behind the Zoca web app and mobile apps: scheduling, website generation, Google Business Profile, discovery/local SEO, social media, booking enquiries, offers, clients, staff, billing and the Zoca "brain" agent layer.'
  version: 3.20.10
  contact: {}
  x-apievangelist-note: Harvested verbatim from https://api.zoca.ai/swagger.json. The provider ships the default NestJS Swagger metadata (title "API Documentation", empty servers[]); title/description/servers were set by API Evangelist for identification and the unmodified original is preserved at openapi/_original/zoca-platform-swagger.json. Every path, operation, summary, parameter and response is exactly as published.
servers:
- url: https://api.zoca.ai
  description: Production
tags:
- name: Staff
paths:
  /staff:
    post:
      description: 'Member-first: writes a `staff.members` row + `member_locations` assignment. When the supplied email already maps to a member at this business, returns `kind: "existing-member-found"` (HTTP 200) so the FE can confirm reuse.'
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: Created or needs-confirmation result.
        '400':
          description: Validation error / mass-assignment attempt.
        '401':
          description: Unauthenticated.
        '403':
          description: Missing `addNewStaffMembers` scope.
        '409':
          description: Assignment already exists at (member, location).
        '503':
          description: Feature disabled (killswitch).
      security:
      - bearer: []
      summary: Create a staff member at a business + location (member-first).
      tags:
      - Staff
    get:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      summary: List staff members (by businessEntityId for rich view, else entityId)
      tags:
      - Staff
  /staff/bulk:
    post:
      operationId: t_value
      parameters: []
      responses:
        '201':
          description: ''
      security:
      - bearer: []
      summary: Create multiple staff members in bulk
      tags:
      - Staff
  /staff/reorder:
    put:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      summary: Reorder staff members
      tags:
      - Staff
  /staff/media:
    post:
      operationId: t_value
      parameters: []
      responses:
        '201':
          description: ''
      security:
      - bearer: []
      summary: Attach media to a staff member
      tags:
      - Staff
  /staff/me:
    get:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: Staff profile.
        '401':
          description: Unauthenticated.
        '403':
          description: Archived in this business.
      security:
      - bearer: []
      summary: Fetch the calling staff member's own profile.
      tags:
      - Staff
    patch:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: Updated staff record.
        '401':
          description: Unauthenticated.
        '403':
          description: Denied `staff:member.self.update` action (e.g., archived staff).
      security:
      - bearer: []
      summary: Patch the calling staff member's own profile.
      tags:
      - Staff
  /staff/directory:
    get:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: Page of staff member views.
        '401':
          description: Unauthenticated.
        '403':
          description: Denied `staff:member.list` action.
        '503':
          description: Feature disabled (killswitch).
      security:
      - bearer: []
      summary: List staff members at a business (cursor-paginated, rich view).
      tags:
      - Staff
  /staff/{memberId}:
    get:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: Staff member view.
        '401':
          description: Unauthenticated.
        '403':
          description: Denied `staff:member.read` action.
        '404':
          description: Staff not found.
        '503':
          description: Feature disabled (killswitch).
      security:
      - bearer: []
      summary: Fetch a single staff member by memberId (rich view).
      tags:
      - Staff
  /staff/{memberId}/archive:
    post:
      operationId: t_value
      parameters: []
      responses:
        '204':
          description: Archived.
        '401':
          description: Unauthenticated.
        '403':
          description: Missing `archiveStaffMembers` scope.
        '404':
          description: Staff not found.
        '503':
          description: Feature disabled (killswitch).
      security:
      - bearer: []
      summary: Archive a staff member at a business (soft-delete).
      tags:
      - Staff
  /staff/{memberId}/unarchive:
    post:
      operationId: t_value
      parameters: []
      responses:
        '204':
          description: Unarchived.
        '401':
          description: Unauthenticated.
        '403':
          description: Missing `archiveStaffMembers` scope.
        '404':
          description: Staff not found.
        '503':
          description: Feature disabled (killswitch).
      security:
      - bearer: []
      summary: Unarchive a staff member at a business.
      tags:
      - Staff
  /staff/{id}:
    patch:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      summary: Update a staff member by ID
      tags:
      - Staff
    delete:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      summary: Delete a staff member by ID (soft-delete)
      tags:
      - Staff
  /staff/{id}/email:
    patch:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      summary: Set a staff member’s email (first-time only, enables invites)
      tags:
      - Staff
  /staff/{staffMemberId}/media/{mediaId}:
    delete:
      operationId: t_value
      parameters: []
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      summary: Delete media from a staff member
      tags:
      - Staff
components:
  securitySchemes:
    access-token:
      scheme: bearer
      bearerFormat: JWT
      type: http
      name: Authorization
      description: Enter JWT token in the format Bearer <token>
      in: header