Api session event editor indicator excel min log time

From Tygron Support wiki
Revision as of 09:42, 10 April 2026 by Frank@tygron.nl (talk | contribs)
Jump to navigation Jump to search

API Endpoint to Excel Sheet Min Log Time.

API Endpoint name is Api session event editor indicator excel min log time

Name Importance Type Description Values
0 REQUIRED (Integer number) Long

Response Codes

Response Code: Description
200 Boolean (Content was updated)
300-600 Codes Overview

Example POST

Curl Example POST:

curl 'https://engine.tygron.com/api/session/event/editorindicator/excel_min_log_time/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '17'

Curl Example multi item POST:

curl 'https://engine.tygron.com/api/session/event/editorindicator/excel_min_log_time/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '91'

JavaScript Example POST:

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