Api session event editor area generate border areas
Jump to navigation
Jump to search
API Endpoint: api/session/event/editorarea/generate_border_areas/
Description: Generate Border Areas
| Index | Importance | Type | Description | Values |
|---|---|---|---|---|
| 0 | REQUIRED | (String) | String | |
| 1 | REQUIRED | (String) | String | |
| 2 | REQUIRED | (Floating point number) | Double |
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/editorarea/generate_border_areas/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ "Text", "Text", 57 ]'Curl example multi item POST
curl 'https://engine.tygron.com/api/session/event/editorarea/generate_border_areas/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ "Text", "Text", 60 ]'JavaScript example POST
var options = {
method: "POST",
headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
body: '[ "Text", "Text", 57 ]'
};
fetch("https://engine.tygron.com/api/session/event/editorarea/generate_border_areas/", options)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));