Api session event editor netload add and set node

From Tygron Support wiki
Jump to navigation Jump to search

API Event to Add And Set Node

Name Importance Type Description Values
0 REQUIRED (NET_LOAD Integer ID) Net Load
1 REQUIRED (Point with crs: EPSG:3857) Point

Response Codes

Response Code: Description
204 No Content
300-600 Codes Overview

Example POST

Curl Example POST:

curl 'https://development.tygron.com/api/session/event/editornetload/add_and_set_node/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ 1, {
 "type" : "Point",
 "coordinates" : [ 658743.2467103883, 6799426.5455873255 ]
} ]
'

Curl Example multi item POST:

curl 'https://development.tygron.com/api/session/event/editornetload/add_and_set_node/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ 1, {
 "type" : "Point",
 "coordinates" : [ 658766.4734806665, 6799368.036551539 ]
} ]
'

JavaScript Example POST:

var options = {
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer 31410104zAuxtcJo8WGhL6iYlCDnU5hd" },
 body: '[ 1, { "type" : "Point", "coordinates" : [ 658743.2467103883, 6799426.5455873255 ]} ]'
};
fetch("https://development.tygron.com/api/session/event/editornetload/add_and_set_node/?crs=3857", options)
 .then(response => response.text())
 .then(result => console.log(result))
 .catch(error => console.log('error', error));