Docmosis integration
Docmosis generates PDF and Word documents from templates, letting developers…
- Provider
- docmosis
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 17 available
Quick start
Call Docmosis from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Docmosis'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(
"DOCMOSIS_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 Docmosis 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
17 actions exposed via the
Docmosis integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DOCMOSIS_DELETE_IMAGE -
DOCMOSIS_DELETE_TEMPLATE -
DOCMOSIS_ENVIRONMENT_READY -
DOCMOSIS_ENVIRONMENT_SUMMARY -
DOCMOSIS_GET_API_KEY -
DOCMOSIS_GET_BATCH_UPLOAD_STATUS -
DOCMOSIS_GET_IMAGE -
DOCMOSIS_GET_RENDER_QUEUE -
DOCMOSIS_GET_RENDER_TAGS -
DOCMOSIS_GET_SAMPLE_DATA -
DOCMOSIS_GET_TEMPLATE -
DOCMOSIS_GET_TEMPLATE_DETAILS
Show all 17 actions
-
DOCMOSIS_GET_TEMPLATE_STRUCTURE -
DOCMOSIS_LIST_IMAGES -
DOCMOSIS_LIST_TEMPLATES -
DOCMOSIS_PING -
DOCMOSIS_PING_DOCMOSIS_SERVICE
Build with Docmosis
Open OverSkill, describe what you want to build, and reference Docmosis in your prompt — the AI will wire up the integration automatically.