Locus TeamMaster API

The TeamMaster API from Locus — 2 operation(s) for teammaster.

Operations 3

GET /client/{clientId}/team-master/{teamId} Get a team #
PUT /client/{clientId}/team-master/{teamId} Create a team #
POST /client/{clientId}/team-master/{teamId}/status #

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-teammaster-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

locus-sh-teammaster-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Locus HomebaseMaster Team Master API
  description: Manage your deliveries with the Locus API
  version: 1.0.0
servers:
- url: https://oms.locus-api.com/v1
tags:
- name: TeamMaster
paths:
  /client/{clientId}/team-master/{teamId}:
    parameters:
    - $ref: '#/components/parameters/ClientIdParam'
    - $ref: '#/components/parameters/TeamIdParam'
    get:
      summary: Get a team
      operationId: getTeam
      parameters:
      - name: include
        in: query
        description: Comma separated list of extra fields that should be returned. Supported values are BUSINESS_UNIT, PREFERENCES.
        schema:
          type: string
      tags:
      - TeamMaster
      responses:
        '200':
          description: team object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Team'
      security:
      - locusauth: []
    put:
      summary: Create a team
      operationId: createTeam
      parameters:
      - $ref: '#/components/parameters/OverwriteParam'
      tags:
      - TeamMaster
      responses:
        '200':
          description: Created team
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Team'
      security:
      - locusauth: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateTeamRequest'
        description: Create team request
        required: true
  /client/{clientId}/team-master/{teamId}/status:
    parameters:
    - $ref: '#/components/parameters/ClientIdParam'
    - $ref: '#/components/parameters/TeamIdParam'
    post:
      description: Update status for a specific team
      operationId: updateTeamStatus
      tags:
      - TeamMaster
      responses:
        '200':
          description: Updated team
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Team'
      security:
      - locusauth: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EntityStatusUpdateRequest'
        description: Updated status of team
        required: true
components:
  schemas:
    EntityStatusUpdateRequest:
      description: Wrapper for entity status update request
      required:
      - status
      properties:
        status:
          $ref: '#/components/schemas/EntityStatus'
    BusinessUnitId:
      required:
      - clientId
      - businessUnitId
      properties:
        clientId:
          type: string
        businessUnitId:
          type: string
    IndustryType:
      type: object
    EntityDefinition:
      type: object
    BusinessUnitStatusEnum:
      description: Operational status of the business unit
      type: string
      default: ACTIVE
      enum:
      - ACTIVE
      - INACTIVE
    EntityStatus:
      type: object
    Team:
      description: Team entity
      allOf:
      - $ref: '#/components/schemas/EntityDefinition'
      - type: object
        properties:
          businessUnitId:
            $ref: '#/components/schemas/BusinessUnitId'
          businessUnit:
            $ref: '#/components/schemas/BusinessUnit'
          cityId:
            $ref: '#/components/schemas/CityId'
          color:
            description: Color of the team
            type: string
          shortCode:
            description: unique 4 character identifier for a team
            type: string
    BusinessUnit:
      description: Business unit of the client
      required:
      - clientId
      - businessUnitId
      - name
      - shortName
      - status
      - version
      properties:
        clientId:
          type: string
        businessUnitId:
          type: string
        name:
          description: Name of business unit
          type: string
        shortName:
          description: Short name of business unit
          type: string
        description:
          description: Description of business unit
          type: string
        status:
          $ref: '#/components/schemas/BusinessUnitStatusEnum'
        industryType:
          $ref: '#/components/schemas/IndustryType'
        color:
          type: string
        version:
          type: integer
          format: int32
    CityId:
      description: An id for a city
      required:
      - cityId
      properties:
        cityId:
          type: string
    CreateTeamRequest:
      description: Team entity create request
      allOf:
      - $ref: '#/components/schemas/EntityDefinition'
      - type: object
        properties:
          businessUnitId:
            $ref: '#/components/schemas/BusinessUnitId'
          cityId:
            $ref: '#/components/schemas/CityId'
          color:
            description: Color of the team
            type: string
  parameters:
    TeamIdParam:
      name: teamId
      in: path
      description: Id of the team
      required: true
      schema:
        type: string
    OverwriteParam:
      name: overwrite
      in: query
      description: Boolean flag if true, will overwrite the existing entity
      required: false
      schema:
        type: boolean
    ClientIdParam:
      name: clientId
      in: path
      description: Id of the client
      required: true
      schema:
        type: string
  securitySchemes:
    locusauth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization