Open Connector
All tools

KlickTipp

Use KlickTipp Listbuilding API to create, update, tag, untag, and unsubscribe contacts from external forms and automations.

klicktippv1.0.03 tools

Authentication

MethodKindStatusDetails
API Keyapi_keyavailable

Call a tool

import { createClient } from "@open-connector/sdk";const oc = createClient({  baseUrl: "https://api.openconnector.dev",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({  slug: "KLICKTIPP_API_SUBSCRIBER_SIGNIN",  connectedAccountId: "conn_...",  arguments: { /* match this tool's input schema */ },});
import Composio from "@composio/client";const composio = new Composio({  baseURL: "https://api.openconnector.dev/composio",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("KLICKTIPP_API_SUBSCRIBER_SIGNIN", {  connected_account_id: "conn_...",  arguments: { /* match this tool's input schema */ },});
oc tools execute KLICKTIPP_API_SUBSCRIBER_SIGNIN --data '{ }'

Tool catalog

Available tools

3 callable operations

SigninKLICKTIPP_API_SUBSCRIBER_SIGNINCreates or updates a contact and associates the tag linked to the API key. **Notice:** On success, the endpoint returns a system-generated redirect URL depending on the opt-in configuration in KlickTipp. For Double Opt-in, the URL points to a pending page indicating that email confirmation is required. For Single Opt-in, the URL points to a final thank-you page. The client may use this URL for optional redirection; the API itself does not perform any redirect.

Creates or updates a contact and associates the tag linked to the API key. **Notice:** On success, the endpoint returns a system-generated redirect URL depending on the opt-in configuration in KlickTipp. For Double Opt-in, the URL points to a pending page indicating that email confirmation is required. For Single Opt-in, the URL points to a final thank-you page. The client may use this URL for optional redirection; the API itself does not perform any redirect.

Authentication

Connected account required

Tags

Listbuilding via API Key
SignoffKLICKTIPP_API_SUBSCRIBER_SIGNOFFUnsubscribes a contact via the API key and prevents further communication.

Unsubscribes a contact via the API key and prevents further communication.

Authentication

Connected account required

Tags

Listbuilding via API Key
SignoutKLICKTIPP_API_SUBSCRIBER_SIGNOUTRemoves the tag of a contact associated with the API key.

Removes the tag of a contact associated with the API key.

Authentication

Connected account required

Tags

Listbuilding via API Key

Provider resources