Api session event editor skill set active

From Tygron Support wiki
Revision as of 13:31, 22 September 2026 by Frank@tygron.nl (talk | contribs) (Created page with "API Endpoint: api/session/event/editorskill/set_active/ Description: Set Skill active {|class=wikitable !Index !Importance !Type !Description !Values |- | 0 | REQUIRED | (SKILL Integer ID or multiple integer values in array [1, 2, 3]) | Skills | |- | 1 | REQUIRED | (Boolean or multiple boolean values in array [true, false, true]) | Boolean[] | |} ===Response Codes=== {|class=wikitable !Response Code: !Description |- | 200 | Boolean (Content was updated) |- |...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

API Endpoint: api/session/event/editorskill/set_active/

Description: Set Skill active

Index Importance Type Description Values
0 REQUIRED (SKILL Integer ID or multiple integer values in array [1, 2, 3]) Skills
1 REQUIRED (Boolean or multiple boolean values in array [true, false, true]) Boolean[]

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/editorskill/set_active/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ 1, true ]'

Curl example multi item POST

curl 'https://engine.tygron.com/api/session/event/editorskill/set_active/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ 1, 2, 3 ], [ true, false, true ] ]'

JavaScript example POST

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