Api session event editor indicator excel min log time

From Tygron Support wiki
Jump to navigation Jump to search

API Endpoint: editorindicator/excel_min_log_time.

Description: Excel Sheet 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 '94'

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 '3'

JavaScript example POST:

var options = {
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 body: '94'
};
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));