1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-25 09:48:09 +00:00
gns3-server/docs/api/examples/controller_post_projectsprojectidlinks.txt

63 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-07-26 17:57:53 +00:00
curl -i -X POST 'http://localhost:3080/v2/projects/6b98809b-cc4d-4cc8-b865-8913c8f3bae5/links' -d '{"nodes": [{"adapter_number": 0, "label": {"text": "Text", "x": 42, "y": 0}, "node_id": "f0874bea-c3ba-4125-9122-6eb8ec7bd09d", "port_number": 3}, {"adapter_number": 2, "node_id": "0054aeb1-48c9-4ecd-a205-91844a57c358", "port_number": 4}]}'
2016-03-11 16:20:09 +00:00
2016-07-26 17:57:53 +00:00
POST /v2/projects/6b98809b-cc4d-4cc8-b865-8913c8f3bae5/links HTTP/1.1
2016-03-11 16:20:09 +00:00
{
2016-05-12 06:44:38 +00:00
"nodes": [
2016-03-11 16:20:09 +00:00
{
"adapter_number": 0,
2016-07-11 13:37:57 +00:00
"label": {
"text": "Text",
"x": 42,
"y": 0
},
2016-07-26 17:57:53 +00:00
"node_id": "f0874bea-c3ba-4125-9122-6eb8ec7bd09d",
2016-05-12 06:44:38 +00:00
"port_number": 3
2016-03-11 16:20:09 +00:00
},
{
"adapter_number": 2,
2016-07-26 17:57:53 +00:00
"node_id": "0054aeb1-48c9-4ecd-a205-91844a57c358",
2016-05-12 06:44:38 +00:00
"port_number": 4
2016-03-11 16:20:09 +00:00
}
]
}
HTTP/1.1 201
2016-07-11 13:37:57 +00:00
CONTENT-LENGTH: 846
2016-03-11 16:20:09 +00:00
CONTENT-TYPE: application/json
DATE: Thu, 08 Jan 2015 16:09:15 GMT
2016-04-18 14:49:36 +00:00
SERVER: Python/3.5 GNS3/2.0.0dev1
2016-03-11 16:20:09 +00:00
X-ROUTE: /v2/projects/{project_id}/links
{
2016-05-12 06:44:38 +00:00
"capture_file_name": null,
"capture_file_path": null,
"capturing": false,
2016-07-26 17:57:53 +00:00
"link_id": "99885af4-208a-4911-be1d-dfcaf1ef0bd0",
2016-05-12 06:44:38 +00:00
"nodes": [
2016-03-11 16:20:09 +00:00
{
"adapter_number": 0,
2016-07-11 13:37:57 +00:00
"label": {
"text": "Text",
"x": 42,
"y": 0
},
2016-07-26 17:57:53 +00:00
"node_id": "f0874bea-c3ba-4125-9122-6eb8ec7bd09d",
2016-05-12 06:44:38 +00:00
"port_number": 3
2016-03-11 16:20:09 +00:00
},
{
"adapter_number": 2,
2016-07-11 13:37:57 +00:00
"label": {
"rotation": 0,
"style": "font-size: 10; font-style: Verdana",
"text": "2/4",
"x": -10,
"y": -10
},
2016-07-26 17:57:53 +00:00
"node_id": "0054aeb1-48c9-4ecd-a205-91844a57c358",
2016-05-12 06:44:38 +00:00
"port_number": 4
2016-03-11 16:20:09 +00:00
}
2016-06-04 08:40:39 +00:00
],
2016-07-26 17:57:53 +00:00
"project_id": "6b98809b-cc4d-4cc8-b865-8913c8f3bae5"
2016-03-11 16:20:09 +00:00
}