Get dynamic field definitions for a single approved template
curl --request GET \
--url https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params \
--header 'x-organization-id: <api-key>'import requests
url = "https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params"
headers = {"x-organization-id": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-organization-id': '<api-key>'}};
fetch('https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-organization-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-organization-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params")
.header("x-organization-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-organization-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"name": "<string>",
"label": "<string>"
}
]
}Make.com Integration - RPC
Get dynamic field definitions for a single approved template
Returns flat field definitions for the dynamic parts of a single template — one entry per {{N}} body parameter, one per dynamic URL button (URL containing {{1}}), and one for the header media URL when the template has an IMAGE/VIDEO/DOCUMENT header. Used by the Make.com “Send Template” module to render dynamic fields once the user has picked a templateName.
Returns an empty array when templateName is missing — Make.com’s convention is “no fields yet” rather than an error before the user has chosen a template.
GET
/
integrations
/
make
/
rpc
/
template-params
Get dynamic field definitions for a single approved template
curl --request GET \
--url https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params \
--header 'x-organization-id: <api-key>'import requests
url = "https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params"
headers = {"x-organization-id": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-organization-id': '<api-key>'}};
fetch('https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-organization-id: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-organization-id", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params")
.header("x-organization-id", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://smartsend-server.otherwise.co.il/integrations/make/rpc/template-params")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-organization-id"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": [
{
"name": "<string>",
"label": "<string>"
}
]
}Authorizations
Your SmartSend Organization ID. Required on every request.
Query Parameters
Name of the approved template (from /rpc/templates)
Optional language code to disambiguate templates that exist in multiple languages (e.g. he, en)