Skip to main content

Connectors

This page lists common connector planning notes. It does not replace each provider's official configuration guide.

ConnectorPrepare before implementation
StripeProducts, prices, checkout flow, webhook events, test mode keys.
SlackWorkspace app, bot scopes, event subscriptions, redirect URL.
WhatsAppBusiness account, phone number, templates, webhook endpoint.
TelegramBot token, command list, webhook or polling preference.
NotionIntegration token, target database or pages, field mapping.
OpenAIModel use case, budget, prompt boundaries, server-side key storage.
HubSpotApp scopes, contact or deal fields, sync direction.
AirtableBase, table, fields, API token, rate limits.
SupabaseProject URL, service role boundaries, database schema, auth needs.

Ask for a safe integration

Add a Slack notification when a booking is created.
Use a server-side webhook URL from environment configuration.
Do not expose the webhook URL in client code.

Connector implementation checklist

  • Start with the user workflow before naming the API.
  • Use provider test mode or sandbox accounts while building.
  • Put all credentials in runtime configuration.
  • Ask Cocoding AI to keep provider calls on the server when secrets are involved.
  • Add visible setup errors when a required variable is missing.
  • Add delivery, sync, or payment status fields so users know what happened.
  • Test failure states, not only the success path.