Skip to main content
GET
/
integrations
/
make
/
rpc
/
bot-template-params
Get template parameters for all templates inside a bot flow
curl --request GET \
  --url https://smartsend-server.otherwise.co.il/integrations/make/rpc/bot-template-params \
  --header 'x-organization-id: <api-key>'
{
  "success": true,
  "data": [
    {
      "templateName": "<string>",
      "language": "<string>",
      "paramCount": 123,
      "params": [
        {
          "index": 123,
          "hint": "<string>"
        }
      ]
    }
  ]
}

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.

Authorizations

x-organization-id
string
header
required

Your SmartSend Organization ID. Required on every request.

Query Parameters

botId
string
required

ID of the bot to scan for template parameters

Response

200 - application/json

Bot template params retrieved successfully

success
boolean
data
object[]