Api session event editor panel add template: Difference between revisions

From Tygron Support wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
API Endpoint: editorpanel/add_template.
API Endpoint: editorpanel/add_template.


API Endpoint name is Api session event editor panel add template.
Description: Add Template
 
Use this endpoint to Add Template


{|class=wikitable
{|class=wikitable

Latest revision as of 13:38, 14 April 2026

API Endpoint: editorpanel/add_template.

Description: Add Template

Name Importance Type Description Values
0 REQUIRED (Enumeration) PanelTemplate DANGEROUS_OBJECTS, NETWORK_INTERACTION, TRAFFIC_NOISE, WATER_AREAS or WEIRS

Response Codes

Response Code: Description
200 Integer (Integer)
300-600 Codes Overview

Example POST

Curl example POST:

curl 'https://engine.tygron.com/api/session/event/editorpanel/add_template/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '"TRAFFIC_NOISE"'

JavaScript example POST:

var options = {
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 body: '"TRAFFIC_NOISE"'
};
fetch("https://engine.tygron.com/api/session/event/editorpanel/add_template/", options)
 .then(response => response.text())
 .then(result => console.log(result))
 .catch(error => console.log('error', error));