Api session event editor netsetting set cluster fraction connected
Jump to navigation
Jump to search
API Endpoint: editornetsetting/set_cluster_fraction_connected.
Description: Set Cluster Fraction Connected
| Name | Importance | Type | Description | Values |
|---|---|---|---|---|
| 0 | 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/editornetsetting/set_cluster_fraction_connected/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '99'Curl example multi item POST:
curl 'https://engine.tygron.com/api/session/event/editornetsetting/set_cluster_fraction_connected/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '82'JavaScript example POST:
var options = {
method: "POST",
headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
body: '99'
};
fetch("https://engine.tygron.com/api/session/event/editornetsetting/set_cluster_fraction_connected/", options)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));