1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 19:28:07 +00:00
gns3-server/docs/api/examples/controller_post_projectsprojectidduplicate.txt

26 lines
703 B
Plaintext
Raw Normal View History

2016-09-14 13:24:27 +00:00
curl -i -X POST 'http://localhost:3080/v2/projects/0f9ef2ca-ac08-475a-b41e-0e5fe21f75ea/duplicate' -d '{"name": "hello"}'
2016-07-26 17:57:53 +00:00
2016-09-14 13:24:27 +00:00
POST /v2/projects/0f9ef2ca-ac08-475a-b41e-0e5fe21f75ea/duplicate HTTP/1.1
2016-07-26 17:57:53 +00:00
{
"name": "hello"
}
HTTP/1.1 201
2016-08-25 12:43:19 +00:00
CONTENT-LENGTH: 299
2016-07-26 17:57:53 +00:00
CONTENT-TYPE: application/json
DATE: Thu, 08 Jan 2015 16:09:15 GMT
SERVER: Python/3.5 GNS3/2.0.0dev1
X-ROUTE: /v2/projects/{project_id}/duplicate
{
2016-08-25 12:43:19 +00:00
"auto_close": true,
"auto_open": false,
"auto_start": false,
2016-07-26 17:57:53 +00:00
"filename": "hello.gns3",
"name": "hello",
2016-09-14 13:24:27 +00:00
"path": "/var/folders/3s/r2wbv07n7wg4vrsn874lmxxh0000gn/T/tmpy0j7sw_o/projects/hello",
"project_id": "e47d8cbb-496e-429c-b3c6-be70ded013f1",
2016-07-26 17:57:53 +00:00
"status": "closed"
}