Dropbox Sign integration
Dropbox Sign (formerly HelloSign) offers electronic signature and document…
- Provider
- dropbox_sign
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 56 available
Quick start
Call Dropbox Sign from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Dropbox Sign'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(
"DROPBOX_SIGN_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 Dropbox Sign 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
56 actions exposed via the
Dropbox Sign integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DROPBOX_SIGN_ADD_USER_TO_TEAM -
DROPBOX_SIGN_ADD_USER_TO_TEMPLATE -
DROPBOX_SIGN_BULK_CREATE_EMBEDDED_SIG_REQ_WITH_TEMPLATE -
DROPBOX_SIGN_BULK_SEND_WITH_TEMPLATE -
DROPBOX_SIGN_CANCEL_SIGNATURE_REQUEST -
DROPBOX_SIGN_CREATE_ACCOUNT -
DROPBOX_SIGN_CREATE_API_APP -
DROPBOX_SIGN_CREATE_EMBEDDED_SIGNATURE_REQUEST -
DROPBOX_SIGN_CREATE_EMBEDDED_SIGNATURE_REQUEST_WITH_TEMPLATE -
DROPBOX_SIGN_CREATE_EMBEDDED_TEMPLATE_DRAFT -
DROPBOX_SIGN_CREATE_EMBEDDED_UNCLAIMED_DRAFT_WITH_TEMPLATE -
DROPBOX_SIGN_CREATE_REPORT
Show all 56 actions
-
DROPBOX_SIGN_CREATE_TEMPLATE -
DROPBOX_SIGN_CREATE_UNCLAIMED_DRAFT -
DROPBOX_SIGN_DELETE_API_APP -
DROPBOX_SIGN_DELETE_FAX -
DROPBOX_SIGN_DELETE_TEMPLATE -
DROPBOX_SIGN_DOWNLOAD_SIGNATURE_REQUEST_FILES -
DROPBOX_SIGN_EDIT_AND_RESEND_EMBEDDED_SIGNATURE_REQUEST -
DROPBOX_SIGN_EDIT_AND_RESEND_SIGNATURE_REQUEST -
DROPBOX_SIGN_EDIT_AND_RESEND_UNCLAIMED_DRAFT -
DROPBOX_SIGN_EDIT_RESEND_EMBEDDED_SIGNATURE_REQUEST_TEMPLATE -
DROPBOX_SIGN_GET_ACCOUNT -
DROPBOX_SIGN_GET_API_APP -
DROPBOX_SIGN_GET_BULK_SEND_JOB -
DROPBOX_SIGN_GET_CURRENT_TEAM -
DROPBOX_SIGN_GET_EMBEDDED_SIGN_URL -
DROPBOX_SIGN_GET_EMBEDDED_TEMPLATE_EDIT_URL -
DROPBOX_SIGN_GET_FAX_LINE_AREA_CODES -
DROPBOX_SIGN_GET_SIGNATURE_REQUEST -
DROPBOX_SIGN_GET_SIGNATURE_REQUEST_FILES_AS_DATA_URI -
DROPBOX_SIGN_GET_SIGNATURE_REQUEST_FILES_AS_FILE_URL -
DROPBOX_SIGN_GET_TEAM_INFO -
DROPBOX_SIGN_GET_TEMPLATE -
DROPBOX_SIGN_GET_TEMPLATE_FILES -
DROPBOX_SIGN_GET_TEMPLATE_FILES_AS_DATA_URI -
DROPBOX_SIGN_GET_TEMPLATE_FILES_AS_FILE_URL -
DROPBOX_SIGN_LIST_API_APPS -
DROPBOX_SIGN_LIST_BULK_SEND_JOBS -
DROPBOX_SIGN_LIST_FAXES -
DROPBOX_SIGN_LIST_FAX_LINES -
DROPBOX_SIGN_LIST_SIGNATURE_REQUESTS -
DROPBOX_SIGN_LIST_SUB_TEAMS -
DROPBOX_SIGN_LIST_TEAM_MEMBERS -
DROPBOX_SIGN_LIST_TEAMS -
DROPBOX_SIGN_LIST_TEMPLATES -
DROPBOX_SIGN_O_AUTH_AUTHORIZE -
DROPBOX_SIGN_RELEASE_SIGNATURE_REQUEST_HOLD -
DROPBOX_SIGN_REMOVE_USER_FROM_TEMPLATE -
DROPBOX_SIGN_SEND_SIGNATURE_REQUEST -
DROPBOX_SIGN_SEND_SIGNATURE_REQUEST_REMINDER -
DROPBOX_SIGN_UPDATE_ACCOUNT -
DROPBOX_SIGN_UPDATE_API_APP -
DROPBOX_SIGN_UPDATE_SIGNATURE_REQUEST -
DROPBOX_SIGN_UPDATE_TEMPLATE_FILES -
DROPBOX_SIGN_VERIFY_ACCOUNT
Build with Dropbox Sign
Open OverSkill, describe what you want to build, and reference Dropbox Sign in your prompt — the AI will wire up the integration automatically.