Api session event editor indicator excel min log time

From Tygron Support wiki
Jump to navigation Jump to search

API Event to 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://development.tygron.com/api/session/event/editorindicator/excel_min_log_time/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '39'

Curl Example multi item POST:

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

JavaScript Example POST:

var options = {
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer 31410104zAuxtcJo8WGhL6iYlCDnU5hd" },
 body: '39'
};
fetch("https://development.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));