Maintainx integration
MaintainX is a cloud-based computerized maintenance management system (CMMS)…
- Provider
- maintainx
- Category
- Productivity
- Setup
- User-supplied API key
- Actions
- 30 available
Quick start
Call Maintainx from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Maintainx's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"MAINTAINX_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Maintainx API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
30 actions exposed via the
Maintainx integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MAINTAINX_CREATE_CATEGORY -
MAINTAINX_CREATE_LOCATION -
MAINTAINX_CREATE_PROCEDURE_TEMPLATE -
MAINTAINX_CREATE_WORK_ORDER -
MAINTAINX_CREATE_WORK_ORDER_COMMENT -
MAINTAINX_CREATE_WORK_REQUEST -
MAINTAINX_CREATE_WORK_REQUEST_PORTAL -
MAINTAINX_DELETE_ASSETS -
MAINTAINX_DELETE_CATEGORY -
MAINTAINX_FIND_ENTITY -
MAINTAINX_GET_CATEGORY -
MAINTAINX_GET_LOCATION
Show all 30 actions
-
MAINTAINX_GET_USER -
MAINTAINX_GET_VENDOR -
MAINTAINX_GET_WORKORDERS_COSTS -
MAINTAINX_LIST_ASSET_CRITICALITIES -
MAINTAINX_LIST_ASSETS -
MAINTAINX_LIST_CATEGORIES -
MAINTAINX_LIST_LOCATIONS -
MAINTAINX_LIST_METERS -
MAINTAINX_LIST_PARTS -
MAINTAINX_LIST_PROCEDURE_TEMPLATES -
MAINTAINX_LIST_TEAMS -
MAINTAINX_LIST_WORK_ORDERS -
MAINTAINX_LIST_WORK_REQUEST_PORTALS -
MAINTAINX_LIST_WORK_REQUESTS -
MAINTAINX_UPDATE_VENDORS_ATTACHMENT -
MAINTAINX_UPDATE_WORK_ORDER -
MAINTAINX_UPDATE_WORK_ORDER_STATUS -
MAINTAINX_UPDATE_WORK_REQUEST_PORTAL
Build with Maintainx
Open OverSkill, describe what you want to build, and reference Maintainx in your prompt — the AI will wire up the integration automatically.