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

21 lines
519 B
Plaintext
Raw Normal View History

2015-02-05 00:48:33 +00:00
curl -i -X PUT 'http://localhost:8000/projects/{project_id}' -d '{"path": "/tmp/pytest-48/test_update_path_project_non_l0"}'
2015-02-04 09:31:31 +00:00
PUT /projects/{project_id} HTTP/1.1
{
2015-02-05 00:48:33 +00:00
"path": "/tmp/pytest-48/test_update_path_project_non_l0"
2015-02-04 09:31:31 +00:00
}
2015-02-05 00:13:35 +00:00
HTTP/1.1 403
CONNECTION: close
CONTENT-LENGTH: 101
2015-02-04 09:31:31 +00:00
CONTENT-TYPE: application/json
DATE: Thu, 08 Jan 2015 16:09:15 GMT
2015-02-05 00:13:35 +00:00
SERVER: Python/3.4 aiohttp/0.13.1
2015-02-04 09:31:31 +00:00
X-ROUTE: /v1/projects/{project_id}
{
2015-02-05 00:13:35 +00:00
"message": "You are not allowed to modifiy the project directory location",
"status": 403
2015-02-04 09:31:31 +00:00
}