> ## 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.

# Get template parameters for all templates inside a bot flow

> Scans a bot flow for template nodes and returns the parameters each template expects. Used for dynamic fields in Make.com.



## OpenAPI

````yaml /openapi-make.json get /integrations/make/rpc/bot-template-params
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/rpc/bot-template-params:
    get:
      tags:
        - Make.com Integration - RPC
      summary: Get template parameters for all templates inside a bot flow
      description: >-
        Scans a bot flow for template nodes and returns the parameters each
        template expects. Used for dynamic fields in Make.com.
      parameters:
        - in: query
          name: botId
          required: true
          schema:
            type: string
          description: ID of the bot to scan for template parameters
      responses:
        '200':
          description: Bot template params retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        templateName:
                          type: string
                        language:
                          type: string
                        paramCount:
                          type: integer
                        params:
                          type: array
                          items:
                            type: object
                            properties:
                              index:
                                type: integer
                              hint:
                                type: string
      security:
        - organizationId: []
components:
  securitySchemes:
    organizationId:
      type: apiKey
      in: header
      name: x-organization-id
      description: Your SmartSend Organization ID. Required on every request.

````