Api session event editor zoning remove: Difference between revisions

From Tygron Support wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 38: Line 38:
Curl example POST:
Curl example POST:


<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorzoning/remove/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ 1, true ]'
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorzoning/remove/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ 1, false ]'
</syntaxhighlight>
</syntaxhighlight>
Curl example multi item POST:
Curl example multi item POST:


<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorzoning/remove/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ 1, 2, 3 ], true ]'
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editorzoning/remove/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ [ 1, 2, 3 ], false ]'
</syntaxhighlight>
</syntaxhighlight>
JavaScript example POST:
JavaScript example POST:
Line 49: Line 49:
 method: "POST",
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 body: '[ 1, true ]'
 body: '[ 1, false ]'
};
};
fetch("https://engine.tygron.com/api/session/event/editorzoning/remove/", options)
fetch("https://engine.tygron.com/api/session/event/editorzoning/remove/", options)
Line 57: Line 57:
</syntaxhighlight>
</syntaxhighlight>
{{article end|seealso=*[[Api session event editor zoning]]
{{article end|seealso=*[[Api session event editor zoning]]
*[[Api session items zones]]
}}
}}


[[Category:API]]
[[Category:API]]

Revision as of 12:03, 10 April 2026

API Endpoint: editorzoning/remove.

API Endpoint name is Api session event editor zoning remove.

Use this endpoint to Remove existing Zoning

Name Importance Type Description Values
0 REQUIRED (ZONE Integer ID or multiple values in array [1, 2, 3]) Zone
1 REQUIRED (true, false) Remove Children true or false

Response Codes

Response Code: Description
200 Boolean (True when at least one item was removed)
300-600 Codes Overview

Example POST

Curl example POST:

curl 'https://engine.tygron.com/api/session/event/editorzoning/remove/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ 1, false ]'

Curl example multi item POST:

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

JavaScript example POST:

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