> ## Documentation Index
> Fetch the complete documentation index at: https://docs.smartsend.co.il/llms.txt
> Use this file to discover all available pages before exploring further.

# Trigger a bot flow by phone number



## OpenAPI

````yaml /openapi-make.json post /integrations/make/flows/send
openapi: 3.0.3
info:
  title: SmartSend Make.com API
  version: 1.0.0
  description: >-
    Public HTTP API for the SmartSend Make.com integration. Every request is
    authenticated with the `x-organization-id` header. These are the endpoints
    Make.com (and any external automation tool) calls to send messages, manage
    conversations, tags, lists, custom fields, and more.
  contact:
    name: SmartSend Support
    email: support@smartsend.com
servers:
  - url: https://smartsend-server.otherwise.co.il
    description: Production
  - url: http://localhost:3091
    description: Local development
security:
  - organizationId: []
tags: []
paths:
  /integrations/make/flows/send:
    post:
      tags:
        - Make.com Integration
      summary: Trigger a bot flow by phone number
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - phoneNumber
                - botId
              properties:
                phoneNumber:
                  type: string
                botId:
                  type: string
                buttonText:
                  type: string
                templateParams:
                  type: object
                  description: >-
                    Override template parameters per template name. Keys are
                    template names, values are string arrays. Example: {
                    "order_confirmation": ["John", "ORD-123"] }
                  additionalProperties:
                    type: array
                    items:
                      type: string
      responses:
        '200':
          description: Flow triggered successfully
      security:
        - organizationId: []
components:
  securitySchemes:
    organizationId:
      type: apiKey
      in: header
      name: x-organization-id
      description: Your SmartSend Organization ID. Required on every request.

````