Update Guide
curl --request PUT \
--url https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"startDate": "2026-09-01T09:00:00.000Z",
"endDate": null
}
'import requests
url = "https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}"
payload = {
"startDate": "2026-09-01T09:00:00.000Z",
"endDate": None
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({startDate: '2026-09-01T09:00:00.000Z', endDate: null})
};
fetch('https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}', 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://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'startDate' => '2026-09-01T09:00:00.000Z',
'endDate' => null
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}"
payload := strings.NewReader("{\n \"startDate\": \"2026-09-01T09:00:00.000Z\",\n \"endDate\": null\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"startDate\": \"2026-09-01T09:00:00.000Z\",\n \"endDate\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"startDate\": \"2026-09-01T09:00:00.000Z\",\n \"endDate\": null\n}"
response = http.request(request)
puts response.read_bodyUpdate Guide
Partial update including lifecycle (startDate = launch, endDate = stop, archived = archive/restore). Steps replace wholesale when sent.
PUT
/
sites
/
{site}
/
guides
/
{guideId}
Update Guide
curl --request PUT \
--url https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"startDate": "2026-09-01T09:00:00.000Z",
"endDate": null
}
'import requests
url = "https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}"
payload = {
"startDate": "2026-09-01T09:00:00.000Z",
"endDate": None
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({startDate: '2026-09-01T09:00:00.000Z', endDate: null})
};
fetch('https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}', 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://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'startDate' => '2026-09-01T09:00:00.000Z',
'endDate' => null
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}"
payload := strings.NewReader("{\n \"startDate\": \"2026-09-01T09:00:00.000Z\",\n \"endDate\": null\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"startDate\": \"2026-09-01T09:00:00.000Z\",\n \"endDate\": null\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dash.tinyanalytics.io/api/sites/{site}/guides/{guideId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"startDate\": \"2026-09-01T09:00:00.000Z\",\n \"endDate\": null\n}"
response = http.request(request)
puts response.read_bodyRelated topics
Onboarding Checklists and Product ToursInstall TinyAnalytics in 5 MinutesIdentify Users Across Sessions and Devices⌘I