Nusii proposals integration
Proposal software that both you and your clients will love.
- Provider
- nusii_proposals
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 29 available
Quick start
Call Nusii proposals from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Nusii proposals'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(
"NUSII_PROPOSALS_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 Nusii proposals 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
29 actions exposed via the
Nusii proposals integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
NUSII_PROPOSALS_ARCHIVE_PROPOSAL -
NUSII_PROPOSALS_CREATE_CLIENT -
NUSII_PROPOSALS_CREATE_LINE_ITEM -
NUSII_PROPOSALS_CREATE_PROPOSAL -
NUSII_PROPOSALS_CREATE_SECTION -
NUSII_PROPOSALS_CREATE_WEBHOOK_ENDPOINT -
NUSII_PROPOSALS_DELETE_CLIENT -
NUSII_PROPOSALS_DELETE_LINE_ITEM -
NUSII_PROPOSALS_DELETE_PROPOSAL -
NUSII_PROPOSALS_DELETE_SECTION -
NUSII_PROPOSALS_DELETE_WEBHOOK_ENDPOINT -
NUSII_PROPOSALS_GET_ACCOUNT_ME
Show all 29 actions
-
NUSII_PROPOSALS_GET_CLIENT -
NUSII_PROPOSALS_GET_PROPOSAL -
NUSII_PROPOSALS_GET_SECTION -
NUSII_PROPOSALS_GET_WEBHOOK_ENDPOINT -
NUSII_PROPOSALS_LIST_CLIENTS -
NUSII_PROPOSALS_LIST_LINE_ITEMS -
NUSII_PROPOSALS_LIST_PROPOSAL_ACTIVITIES -
NUSII_PROPOSALS_LIST_PROPOSALS -
NUSII_PROPOSALS_LIST_SECTION_LINE_ITEMS -
NUSII_PROPOSALS_LIST_SECTIONS -
NUSII_PROPOSALS_LIST_THEMES -
NUSII_PROPOSALS_LIST_USERS -
NUSII_PROPOSALS_LIST_WEBHOOK_ENDPOINTS -
NUSII_PROPOSALS_UPDATE_CLIENT -
NUSII_PROPOSALS_UPDATE_LINE_ITEM -
NUSII_PROPOSALS_UPDATE_PROPOSAL -
NUSII_PROPOSALS_UPDATE_SECTION
Build with Nusii proposals
Open OverSkill, describe what you want to build, and reference Nusii proposals in your prompt — the AI will wire up the integration automatically.