Laposta integration
Dutch newsletter app (email marketing) that makes it exceptionally easy to send…
- Provider
- laposta
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 25 available
Quick start
Call Laposta from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Laposta'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(
"LAPOSTA_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 Laposta 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
25 actions exposed via the
Laposta integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
LAPOSTA_CAMPAIGN_GET_ALL -
LAPOSTA_FIELD_CREATE -
LAPOSTA_FIELD_DELETE -
LAPOSTA_FIELD_GET -
LAPOSTA_FIELD_GET_ALL -
LAPOSTA_FIELD_UPDATE -
LAPOSTA_GET_SEGMENT -
LAPOSTA_LIST_CLEAR_MEMBERS -
LAPOSTA_LIST_CREATE -
LAPOSTA_LIST_DELETE -
LAPOSTA_LIST_GET -
LAPOSTA_LIST_GET_ALL
Show all 25 actions
-
LAPOSTA_LIST_UPDATE -
LAPOSTA_MEMBER_CREATE -
LAPOSTA_MEMBER_DELETE -
LAPOSTA_MEMBER_GET -
LAPOSTA_MEMBER_GET_ALL -
LAPOSTA_MEMBER_UPDATE -
LAPOSTA_REPORT_GET_ALL -
LAPOSTA_SEGMENT_GET_ALL -
LAPOSTA_WEBHOOK_CREATE -
LAPOSTA_WEBHOOK_DELETE -
LAPOSTA_WEBHOOK_GET -
LAPOSTA_WEBHOOK_GET_ALL -
LAPOSTA_WEBHOOK_UPDATE
Build with Laposta
Open OverSkill, describe what you want to build, and reference Laposta in your prompt — the AI will wire up the integration automatically.