1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-25 01:38:08 +00:00
gns3-server/docs/api/examples/controller_post_projectsprojectidduplicate.txt

29 lines
803 B
Plaintext
Raw Normal View History

2017-06-29 15:14:09 +00:00
curl -i -X POST 'http://localhost:3080/v2/projects/e87798ff-6e29-4e7f-8f88-9df39dbefb30/duplicate' -d '{"name": "hello"}'
2017-03-21 12:32:04 +00:00
2017-06-29 15:14:09 +00:00
POST /v2/projects/e87798ff-6e29-4e7f-8f88-9df39dbefb30/duplicate HTTP/1.1
2017-03-21 12:32:04 +00:00
{
"name": "hello"
}
HTTP/1.1 201
Connection: close
2017-06-29 15:14:09 +00:00
Content-Length: 381
2017-03-21 12:32:04 +00:00
Content-Type: application/json
2017-06-29 15:14:09 +00:00
Date: Thu, 29 Jun 2017 15:08:07 GMT
Server: Python/3.6 GNS3/2.1.0dev1
2017-03-21 12:32:04 +00:00
X-Route: /v2/projects/{project_id}/duplicate
{
"auto_close": true,
"auto_open": false,
"auto_start": false,
"filename": "hello.gns3",
"name": "hello",
2017-06-29 15:14:09 +00:00
"path": "/var/folders/3s/r2wbv07n7wg4vrsn874lmxxh0000gn/T/tmpriyu8h8d/projects/c109539d-4b91-4bd4-b25d-6677e4afc6a3",
"project_id": "c109539d-4b91-4bd4-b25d-6677e4afc6a3",
2017-03-21 12:32:04 +00:00
"scene_height": 1000,
"scene_width": 2000,
"status": "closed"
}