Maven Machines Servicetechs API
The servicetechs API from Maven Machines — 3 operation(s) for servicetechs.
The servicetechs API from Maven Machines — 3 operation(s) for servicetechs.
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/maven-machines-servicetechs-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: Reddy Ice Middleware Servicetechs API
description: 'Middleware service that integrates Reddy Ice systems with the Maven Machines platform.
## Authentication
All protected endpoints require an API key in the `apiKey` request header.
`GET /` is public and does not require an API key.
## Environment
The middleware URL is the same for all tiers. Your `apiKey` determines which Maven
environment (dev, qa, staging, prod) receives the request.'
version: 1.0.0
contact: {}
license:
name: UNLICENSED
servers:
- url: https://reddy-ice.middleware.mavenmachines.com
description: Middleware (target env selected by apiKey)
tags:
- name: servicetechs
paths:
/servicetechs/assets/{barcode}:
get:
operationId: ServiceTechsController_getAssetByBarcode
summary: GET /servicetechs/assets/barCode
description: API endpoint to get asset information from a barcode scan
parameters:
- name: barcode
required: true
in: path
schema:
type: string
- name: task-id
required: false
in: query
description: Optional Maven task ID
schema:
type: string
- name: task-type
required: false
in: query
description: Optional Maven task type
schema:
type: string
- name: i
required: false
in: query
description: Optional field filter(s)
schema:
type: array
items:
type: string
responses:
'200':
description: A successful asset lookup
content:
application/json:
schema:
$ref: '#/components/schemas/AssetResponseDto'
'400':
description: Validation failed or business rule violation
'401':
description: Missing or invalid apiKey
'404':
description: Asset not found
'500':
description: Upstream asset lookup failed
tags:
- servicetechs
security:
- api_key: []
/servicetechs/assets/workflow-data/{assetType}:
get:
operationId: ServiceTechsController_getWorkflowData
summary: GET /servicetechs/assets/workflow-data/assetType
description: Fetch workflow data for a given asset type
parameters:
- name: assetType
required: true
in: path
schema:
type: string
- name: i
required: false
in: query
description: Optional field filter(s)
schema:
type: array
items:
type: string
- name: task-id
required: false
in: query
description: Optional Maven task ID
schema:
type: string
- name: task-type
required: false
in: query
description: Optional Maven task type
schema:
type: string
responses:
'200':
description: A successful workflow lookup
content:
application/json:
schema:
$ref: '#/components/schemas/WorkflowResponseDto'
'400':
description: Validation failed or business rule violation
'401':
description: Missing or invalid apiKey
'500':
description: Workflow data lookup failed
tags:
- servicetechs
security:
- api_key: []
/servicetechs/clearCache:
get:
operationId: ServiceTechsController_clearCache
summary: Clear servicetechs cache
description: Clears cached servicetechs datasets. Restricted to API keys associated with company ID 1.
parameters: []
responses:
'200':
description: Cache cleared
'400':
description: Validation failed or business rule violation
'401':
description: This endpoint may only be executed for company 1
tags:
- servicetechs
security:
- api_key: []
components:
schemas:
AssetInfoDto:
type: object
properties:
barcode:
type: string
capacity:
oneOf:
- type: number
- type: string
latLon:
$ref: '#/components/schemas/LatLongDto'
make:
type: string
model:
type: string
serviceStatus:
type: string
unitNumber:
type: string
unitType:
type: string
year:
oneOf:
- type: number
- type: string
required:
- barcode
- capacity
- latLon
- make
- model
- serviceStatus
- unitNumber
- unitType
- year
AssetResponseDto:
type: object
properties:
checklist:
$ref: '#/components/schemas/ChecklistDto'
parts:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
photoCategories:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
rootCauses:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
services:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
info:
$ref: '#/components/schemas/AssetInfoDto'
required:
- checklist
- parts
- photoCategories
- rootCauses
- services
- info
ChecklistDto:
type: object
properties:
id:
type: string
questions:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
required:
- id
- questions
WorkflowResponseDto:
type: object
properties:
checklist:
$ref: '#/components/schemas/ChecklistDto'
parts:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
photoCategories:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
rootCauses:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
services:
type: array
items:
$ref: '#/components/schemas/GenericItemDto'
required:
- checklist
- parts
- photoCategories
- rootCauses
- services
LatLongDto:
type: object
properties:
latitude:
oneOf:
- type: number
- type: string
longitude:
oneOf:
- type: number
- type: string
required:
- latitude
- longitude
GenericItemDto:
type: object
properties:
id:
type: string
displayText:
type: string
required:
- id
- displayText
securitySchemes:
api_key:
type: apiKey
in: header
name: apiKey