DocuSeal integration
DocuSeal is a platform that provides a powerful and easy-to-use API to…
- Provider
- docuseal
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 22 available
Quick start
Call DocuSeal from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to DocuSeal'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(
"DOCUSEAL_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 DocuSeal 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
22 actions exposed via the
DocuSeal integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DOCUSEAL_ARCHIVE_SUBMISSION -
DOCUSEAL_ARCHIVE_TEMPLATE -
DOCUSEAL_CLONE_TEMPLATE2 -
DOCUSEAL_CREATE_SUBMISSION -
DOCUSEAL_CREATE_SUBMISSION_FROM_DOCX -
DOCUSEAL_CREATE_SUBMISSION_FROM_HTML -
DOCUSEAL_CREATE_SUBMISSION_FROM_PDF -
DOCUSEAL_CREATE_SUBMISSIONS_FROM_EMAILS -
DOCUSEAL_CREATE_TEMPLATE_FROM_DOCX -
DOCUSEAL_CREATE_TEMPLATE_FROM_HTML2 -
DOCUSEAL_CREATE_TEMPLATE_FROM_PDF -
DOCUSEAL_GET_SUBMISSION
Show all 22 actions
-
DOCUSEAL_GET_SUBMISSION_DOCUMENTS -
DOCUSEAL_GET_SUBMITTER -
DOCUSEAL_GET_TEMPLATE -
DOCUSEAL_LIST_SUBMISSIONS -
DOCUSEAL_LIST_SUBMITTERS -
DOCUSEAL_LIST_TEMPLATES2 -
DOCUSEAL_MERGE_TEMPLATES -
DOCUSEAL_UPDATE_SUBMITTER -
DOCUSEAL_UPDATE_TEMPLATE2 -
DOCUSEAL_UPDATE_TEMPLATE_DOCUMENTS
Build with DocuSeal
Open OverSkill, describe what you want to build, and reference DocuSeal in your prompt — the AI will wire up the integration automatically.