List bot templates
curl --request GET \
--url https://api.helloannie.com/v1/bots/{botId}/templatesimport requests
url = "https://api.helloannie.com/v1/bots/{botId}/templates"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.helloannie.com/v1/bots/{botId}/templates', 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://api.helloannie.com/v1/bots/{botId}/templates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.helloannie.com/v1/bots/{botId}/templates"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.helloannie.com/v1/bots/{botId}/templates")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.helloannie.com/v1/bots/{botId}/templates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"templates": [
{
"templateId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"templateName": "<string>",
"templateDescription": "<string>",
"templateOrgId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"isInternallyManaged": true,
"appliedTemplateVersion": 123,
"currentTemplateVersion": 123,
"appliedAt": "2023-11-07T05:31:56Z",
"workflow": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": true
},
"variables": [
{
"name": "<string>",
"value": "<unknown>",
"orgVariableSource": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
]
}
}{
"success": false,
"data": {},
"message": "<string>"
}{
"success": false,
"data": {},
"message": "<string>"
}Templates
List bot templates
List templates currently applied to a bot, including application metadata, variable values, version freshness, and the workflow created by each template.
GET
/
bots
/
{botId}
/
templates
List bot templates
curl --request GET \
--url https://api.helloannie.com/v1/bots/{botId}/templatesimport requests
url = "https://api.helloannie.com/v1/bots/{botId}/templates"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.helloannie.com/v1/bots/{botId}/templates', 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://api.helloannie.com/v1/bots/{botId}/templates",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.helloannie.com/v1/bots/{botId}/templates"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.helloannie.com/v1/bots/{botId}/templates")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.helloannie.com/v1/bots/{botId}/templates")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"templates": [
{
"templateId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"templateName": "<string>",
"templateDescription": "<string>",
"templateOrgId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"isInternallyManaged": true,
"appliedTemplateVersion": 123,
"currentTemplateVersion": 123,
"appliedAt": "2023-11-07T05:31:56Z",
"workflow": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"enabled": true
},
"variables": [
{
"name": "<string>",
"value": "<unknown>",
"orgVariableSource": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
]
}
}{
"success": false,
"data": {},
"message": "<string>"
}{
"success": false,
"data": {},
"message": "<string>"
}⌘I