Skip to main content
Integration playbooks turn the endpoint-level API documentation into practical application flows. Use these pages when you already understand the basics and want to design a production integration for a specific workflow.

What these playbooks cover

  • Server-side request patterns
  • Session ID strategy
  • Document sync strategy
  • Sync vs async chat decisions
  • Feedback and quality signals
  • Operational checks after rollout
  1. Read API Authentication
  2. Read M2M API Overview
  3. Review M2M Code Samples
  4. Choose the playbook that matches your application flow
  5. Validate endpoint details in API Reference

Available playbooks

Shared implementation rules

All playbooks assume:
  • API keys are stored server-side only
  • API keys are never sent to browsers, mobile apps, or third-party clients
  • tenant_id and site_id are runtime configuration, not user input
  • Logs do not include API keys, full customer messages, or private account data
  • User-facing answers are checked against your own business rules before triggering irreversible actions

Shared environment variables

Minimal shared JavaScript helper

Use one server-side helper for all playbooks so authentication, error handling, and logging stay consistent.
For file uploads, use the upload examples in M2M Code Samples.