POST /links
Description
Creates a new linkThe route handles the HTTP POST request made to the /links
path.
Payload
The server needs to receive a JSON object with data for the new link. See parameters description here: links
{
"id": "temp://1710929724740",
"source": 69,
"target": 70,
"type": "s2s"
}
Response
The server returns a JSON object with the new link ID.
Example:
{
"id": 17
}
The HTTP status code shows whether the request succeeds (response.status == 200) or fails (response.status == 500).
Related articles: