Daily Usage
No providers available
Configure providers via the Composio dashboard
| Provider | Account | Connected By | Status | Connected At | Actions |
|---|
No connections yet
Connect a provider to get started
| Action | Provider | Tool | Actor | Result | Timestamp |
|---|
No audit entries yet
Agent API
REST + MCP endpoints for programmatic provider connection and tool execution management.
https://ss-connections.ocuss.app
workspace query param required. Access restricted to authenticated Multica sessions via frame-ancestors CSP (iframe-only). No additional auth header needed for v1.
/api/connections/providers
List allowed providers (filtered by COMPOSIO_ALLOWED_PROVIDERS).
workspace (required) Slug or UUID/api/connections
List active connections for the workspace.
workspace (required) Slug or UUIDprovider (optional) Filter by providerstatus (optional) active|revoked|error/api/connections/{provider}/connect
Initiate OAuth connection for a provider. Requires owner/admin role.
workspace (required) Slug or UUIDcurl -X POST "https://ss-connections.ocuss.app/api/connections/gmail/connect?workspace=$MULTICA_WORKSPACE_ID"
/api/connections/{provider}/callback
OAuth callback endpoint. No JWT required โ called by Composio after user consent. Redirects to UI.
ws * Workspace UUIDstatus * success|failedconnected_account_id * Composio account ID/api/connections/{id}
Revoke a connection. Requires owner/admin role. Soft delete โ preserves audit trail.
workspace (required) Slug or UUID/api/connections/{id}/tools
List available Composio tools for a connected account.
workspace (required) Slug or UUID/api/connections/{provider}/execute/{tool_slug}
Execute a Composio tool against a connected account. Subject to daily cap.
workspace (required) Slug or UUID/api/connections/audit
List audit log entries for the workspace. Newest first. Supports pagination and filtering.
workspace (required) Slug or UUIDlimit (optional) Max results (default 50, max 200)offset (optional) Pagination offsetaction (optional) connect|revoke|execute|cap_exceededprovider (optional) Filter by providerMCP Tools
connections_list(workspace_id)
connections_list_tools(workspace_id, provider)
connections_execute(workspace_id, provider, tool_slug, args)
connections_get_audit(workspace_id, limit?)
Quick Reference
curl "https://ss-connections.ocuss.app/api/connections/providers?workspace=$MULTICA_WORKSPACE_ID"
curl -X POST "https://ss-connections.ocuss.app/api/connections/gmail/connect?workspace=$MULTICA_WORKSPACE_ID"
curl -X POST "https://ss-connections.ocuss.app/api/connections/gmail/execute/GMAIL_SEND_EMAIL?workspace=$MULTICA_WORKSPACE_ID" \
-H "Content-Type: application/json" \
-d '{"args":{"to":"user@example.com","subject":"Hello","body":"World"}}'
curl "https://ss-connections.ocuss.app/api/connections/audit?workspace=$MULTICA_WORKSPACE_ID&limit=10"