βš™οΈ
Maax AI Documentation
  • Start Here
    • ▢️Welcome to Maax
      • How does it work?
        • Integrations
        • Dataflow
      • Accessing your account
    • πŸ“šSetting Up Your Knowledge Base
      • Uploading Content
        • Upload Best Practices
      • Testing Responses
    • πŸ’»Web App (Dashboard)
      • Maax AI Setup
        • Upload Content
        • Student Support
        • Sales
      • Leaving Feedback on Conversations
  • Setup Your AI
    • πŸ’ΈSales AI
      • 1. Product
        • 1a. Update Knowledge Base
        • 1b. Create a Product Description
      • 2. Strategy
      • 3. Goal and Goal URL
      • 4. Creating Your Sales AI
    • πŸ¦Έβ€β™‚οΈCustomer Support AI
      • Emergency Notification Setting
  • πŸ”„Setup Your Integration
    • V2 Sales AI - Zapier
      • 1. Send Question to Maax
      • 1a. Explanation of Python Code Step
      • 2. Catch and Map Response From Maax
      • 3. Catch and Map Follow Ups
      • 4. Set up Emergency Notifications
    • V1 Customer AI - Zapier
      • Step 1 – Starting your Zap
      • Step 2 – Use Zapier Python to Send Your Question to Maax
        • Follow-up Message Handling
      • Step 3 – Delay Your Request
      • Step 4 – Get the Answer
      • Step 5 – Map the Answer
    • Example Use Cases
      • Gmail Customer Support Automation with Zapier
  • Technical Guides
    • πŸ”—APIs
      • V1
        • Authentication
        • Base Url
        • Conversations
        • Products
        • Strategies
        • Goals
        • Sales AIs
      • V2
        • Authentication
        • Base Url
        • Outgoing Messages
        • Conversations
    • πŸ‡Explanatory Diagrams
      • Advanced - MAAX AI API Model Architecture
      • Answer Generation With MAAX AI
  • πŸ’¬ Building Good Prompts
    • [Use Case] Engage Cart Abandons
Powered by GitBook
On this page
  1. Setup Your Integration
  2. V2 Sales AI - Zapier

1. Send Question to Maax

PreviousV2 Sales AI - ZapierNext1a. Explanation of Python Code Step

Last updated 1 year ago

Summary

  1. Ingest Step The ingest step is demonstrated using Close, but the functionality and steps described are applicable generally.

  2. Triggering the Workflow The workflow is triggered by an incoming SMS in Close. Specifically, it looks for a new inbound SMS to initiate the workflow.

  3. Focus on Inbound Communication In the Close setup, the system is configured to only respond to inbound SMS, not outbound ones.

  4. Finding the Lead A crucial step in Close (and generally in setups) is to identify the lead. This is done by searching for the lead using their phone number, email, or other provided identifiers.

  5. Tagging and List Association The purpose of identifying the lead is to understand their relevant tags and list associations. This information is critical to connect the prospect to the correct version of Maax AI.

  6. Audience Segmentation The process involves ensuring that the prospect is part of the appropriate audience so they interact with the suitable version of Maax AI.

  7. Conditional Continuation The workflow is set to continue only if the lead found in the previous step is part of a specific list (e.g., List A).

    1. This conditional setup means that emails or SMSs will only proceed through the workflow if they meet the specified criteria.

  8. Different Ingest Steps for Different Lists Separate ingest steps are created for leads belonging to different lists (e.g., List B, List C, etc.), to ensure proper segmentation and targeting.

  9. Introduction to Python Step The transcript hints at a Python step in the workflow, but details are deferred to a separate video to keep the current explanation concise.

πŸ”„