Api session event editor overlay set parent: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
API Endpoint: api/session/event/editoroverlay/set_parent/ | API Endpoint: api/session/event/editoroverlay/set_parent/ | ||
Description: Set a parent [[Overlay]] for a specified [[Overlay]] | Description: Set a parent [[Overlay]] for a specified [[Overlay]], making it a subselectable child. An [[Overlay]] with a parent cannot be assigned as a parent to another [[Overlay]]. | ||
{|class=wikitable | {|class=wikitable | ||
! | !Index | ||
!Importance | !Importance | ||
!Type | !Type | ||
| Line 10: | Line 10: | ||
!Values | !Values | ||
|- | |- | ||
|0 | | 0 | ||
|REQUIRED | | REQUIRED | ||
|(OVERLAY Integer ID) | | (OVERLAY Integer ID) | ||
|[[Overlay]] ID | | [[Overlay]] ID | ||
| | | | ||
|- | |- | ||
|1 | | 1 | ||
|REQUIRED | | REQUIRED | ||
|(Integer number) | | (Integer number) | ||
|[[Overlay]] ID of parent ([[Overlay]] without a parent should have their parent [[Overlay]] ID set to -1) | | [[Overlay]] ID of parent ([[Overlay]]s without a parent should have their parent [[Overlay]] ID set to -1) | ||
| | | | ||
|} | |} | ||
===Response Codes=== | ===Response Codes=== | ||
| Line 27: | Line 27: | ||
!Description | !Description | ||
|- | |- | ||
|204 | | 204 | ||
|No Content | | No Content | ||
|- | |- | ||
|300-600 | | 300-600 | ||
|Codes Overview | | Codes Overview | ||
|} | |} | ||
===Example POST=== | ===Example POST=== | ||
Curl example POST | Curl example POST | ||
<syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editoroverlay/set_parent/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ 1, 1 ]' | <syntaxhighlight lang="text" copy>curl 'https://engine.tygron.com/api/session/event/editoroverlay/set_parent/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ 1, 1 ]' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
JavaScript example POST | JavaScript example POST | ||
<syntaxhighlight lang="text" copy>var options = { | <syntaxhighlight lang="text" copy>var options = { | ||
method: "POST", | method: "POST", | ||
Latest revision as of 09:59, 13 July 2026
API Endpoint: api/session/event/editoroverlay/set_parent/
Description: Set a parent Overlay for a specified Overlay, making it a subselectable child. An Overlay with a parent cannot be assigned as a parent to another Overlay.
| Index | Importance | Type | Description | Values |
|---|---|---|---|---|
| 0 | REQUIRED | (OVERLAY Integer ID) | Overlay ID | |
| 1 | REQUIRED | (Integer number) | Overlay ID of parent (Overlays without a parent should have their parent Overlay ID set to -1) |
Response Codes
| Response Code: | Description |
|---|---|
| 204 | No Content |
| 300-600 | Codes Overview |
Example POST
Curl example POST
curl 'https://engine.tygron.com/api/session/event/editoroverlay/set_parent/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ 1, 1 ]'JavaScript example POST
var options = {
method: "POST",
headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
body: '[ 1, 1 ]'
};
fetch("https://engine.tygron.com/api/session/event/editoroverlay/set_parent/", options)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));