Locus ShiftTag API

The ShiftTag API from Locus — 2 operation(s) for shifttag.

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/locus-sh-shifttag-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

locus-sh-shifttag-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Locus HomebaseMaster ShiftTag API
  description: Manage your deliveries with the Locus API
  version: 1.0.0
schemes:
- https
consumes:
- application/json
produces:
- application/json
tags:
- name: ShiftTag
paths:
  /client/{clientId}/shift-manager/{tagId}:
    parameters:
    - $ref: '#/parameters/ClientIdParam'
    - $ref: '#/parameters/TagIdParam'
    get:
      summary: fetch shiftTag by id
      operationId: getShiftTag
      parameters:
      - name: include
        in: query
        description: Extra fields that should be returned.
        type: string
      tags:
      - ShiftTag
      responses:
        '200':
          description: ShiftTag object
          schema:
            $ref: '#/definitions/ShiftTag'
      security:
      - locusauth: []
    put:
      summary: Create a given shiftTag
      operationId: createShiftTag
      parameters:
      - name: shiftTag
        in: body
        description: Create shift tag request
        required: true
        schema:
          $ref: '#/definitions/ShiftTag'
      - $ref: '#/parameters/OverwriteParam'
      tags:
      - ShiftTag
      responses:
        '200':
          description: ShiftTag object
          schema:
            $ref: '#/definitions/ShiftTag'
      security:
      - locusauth: []
  /client/{clientId}/shift-manager/{tagId}/disable:
    parameters:
    - $ref: '#/parameters/ClientIdParam'
    - $ref: '#/parameters/TagIdParam'
    post:
      description: Disable a specific Shift Tag
      operationId: disableShiftTag
      tags:
      - ShiftTag
      responses:
        '200':
          description: Updated shiftTag object
          schema:
            $ref: '#/definitions/ShiftTag'
      security:
      - locusauth: []
definitions:
  ShiftTag:
    $ref: https://swagger.locus-api.com/roster-entity.yaml#/definitions/ShiftTag
parameters:
  TagIdParam:
    name: tagId
    in: path
    description: Id of the shiftTag
    required: true
    type: string
  OverwriteParam:
    name: overwrite
    in: query
    description: Boolean flag if true, will overwrite the existing entity
    required: false
    type: boolean
  ClientIdParam:
    name: clientId
    in: path
    description: Id of the client
    required: true
    type: string
securityDefinitions:
  locusauth:
    type: basic
    description: HTTP Basic Authentication
  apiKeyAuth:
    type: apiKey
    in: header
    name: Authorization