gns3-server/docs/api/examples/controller_post_projectsprojectidlinks.txt

46 lines
1.3 KiB
Plaintext
Raw Normal View History

2016-06-21 10:31:00 +02:00
curl -i -X POST 'http://localhost:3080/v2/projects/54a38caf-74a3-40c5-a9e0-2cf1a414ffaf/links' -d '{"nodes": [{"adapter_number": 0, "node_id": "8115e155-24c3-4f1e-99f6-9245aca009a2", "port_number": 3}, {"adapter_number": 2, "node_id": "38e67c08-724a-4aa6-b672-9d621c4727c7", "port_number": 4}]}'
2016-03-11 17:20:09 +01:00
2016-06-21 10:31:00 +02:00
POST /v2/projects/54a38caf-74a3-40c5-a9e0-2cf1a414ffaf/links HTTP/1.1
2016-03-11 17:20:09 +01:00
{
2016-05-12 08:44:38 +02:00
"nodes": [
2016-03-11 17:20:09 +01:00
{
"adapter_number": 0,
2016-06-21 10:31:00 +02:00
"node_id": "8115e155-24c3-4f1e-99f6-9245aca009a2",
2016-05-12 08:44:38 +02:00
"port_number": 3
2016-03-11 17:20:09 +01:00
},
{
"adapter_number": 2,
2016-06-21 10:31:00 +02:00
"node_id": "38e67c08-724a-4aa6-b672-9d621c4727c7",
2016-05-12 08:44:38 +02:00
"port_number": 4
2016-03-11 17:20:09 +01:00
}
]
}
HTTP/1.1 201
2016-06-04 10:40:39 +02:00
CONTENT-LENGTH: 514
2016-03-11 17:20:09 +01:00
CONTENT-TYPE: application/json
DATE: Thu, 08 Jan 2015 16:09:15 GMT
2016-04-18 16:49:36 +02:00
SERVER: Python/3.5 GNS3/2.0.0dev1
2016-03-11 17:20:09 +01:00
X-ROUTE: /v2/projects/{project_id}/links
{
2016-05-12 08:44:38 +02:00
"capture_file_name": null,
"capture_file_path": null,
"capturing": false,
2016-06-21 10:31:00 +02:00
"link_id": "7af8ebf6-6300-4896-9c01-bb0f6e857c0a",
2016-05-12 08:44:38 +02:00
"nodes": [
2016-03-11 17:20:09 +01:00
{
"adapter_number": 0,
2016-06-21 10:31:00 +02:00
"node_id": "8115e155-24c3-4f1e-99f6-9245aca009a2",
2016-05-12 08:44:38 +02:00
"port_number": 3
2016-03-11 17:20:09 +01:00
},
{
"adapter_number": 2,
2016-06-21 10:31:00 +02:00
"node_id": "38e67c08-724a-4aa6-b672-9d621c4727c7",
2016-05-12 08:44:38 +02:00
"port_number": 4
2016-03-11 17:20:09 +01:00
}
2016-06-04 10:40:39 +02:00
],
2016-06-21 10:31:00 +02:00
"project_id": "54a38caf-74a3-40c5-a9e0-2cf1a414ffaf"
2016-03-11 17:20:09 +01:00
}