Productlane integration
Productlane is a customer support and feedback system designed for modern…
- Provider
- productlane
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 39 available
Quick start
Call Productlane from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Productlane'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(
"PRODUCTLANE_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 Productlane 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
39 actions exposed via the
Productlane integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
PRODUCTLANE_CREATE_CHANGELOG -
PRODUCTLANE_CREATE_COMPANY -
PRODUCTLANE_CREATE_CONTACT -
PRODUCTLANE_CREATE_FEEDBACK -
PRODUCTLANE_CREATE_INSIGHT -
PRODUCTLANE_CREATE_THREAD -
PRODUCTLANE_CREATE_UPVOTE -
PRODUCTLANE_DELETE_COMPANY -
PRODUCTLANE_DELETE_CONTACT -
PRODUCTLANE_DELETE_UPVOTE -
PRODUCTLANE_ENABLE_WIDGET -
PRODUCTLANE_GET_CHANGELOG
Show all 39 actions
-
PRODUCTLANE_GET_COMPANY -
PRODUCTLANE_GET_CONTACT -
PRODUCTLANE_GET_HELP_CENTER_ARTICLE -
PRODUCTLANE_GET_INSIGHT -
PRODUCTLANE_GET_ISSUE -
PRODUCTLANE_GET_LINEAR_OPTIONS -
PRODUCTLANE_GET_PROJECT -
PRODUCTLANE_GET_WORKSPACE -
PRODUCTLANE_INVITE_USER -
PRODUCTLANE_LIST_CHANGELOGS -
PRODUCTLANE_LIST_COMPANIES -
PRODUCTLANE_LIST_CONTACTS -
PRODUCTLANE_LIST_HELP_CENTER_ARTICLES -
PRODUCTLANE_LIST_INSIGHTS -
PRODUCTLANE_LIST_ISSUES -
PRODUCTLANE_LIST_MEMBERS -
PRODUCTLANE_LIST_PROJECTS -
PRODUCTLANE_UPDATE_COMPANY -
PRODUCTLANE_UPDATE_CONTACT -
PRODUCTLANE_UPDATE_INSIGHT -
PRODUCTLANE_WIDGET_CLOSE -
PRODUCTLANE_WIDGET_DISABLE -
PRODUCTLANE_WIDGET_OFF_EVENT -
PRODUCTLANE_WIDGET_ON_EVENT -
PRODUCTLANE_WIDGET_OPEN -
PRODUCTLANE_WIDGET_OPEN_DOCS -
PRODUCTLANE_WIDGET_TOGGLE
Build with Productlane
Open OverSkill, describe what you want to build, and reference Productlane in your prompt — the AI will wire up the integration automatically.