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

23 lines
592 B
Plaintext
Raw Normal View History

2019-03-30 08:56:26 +00:00
curl -i -X POST 'http://localhost:3080/v2/projects/6b02daca-6b3b-4349-a874-af2259c033fa/snapshots' -d '{"name": "snap1"}'
2018-01-08 08:26:44 +00:00
2019-03-30 08:56:26 +00:00
POST /v2/projects/6b02daca-6b3b-4349-a874-af2259c033fa/snapshots HTTP/1.1
2018-01-08 08:26:44 +00:00
{
"name": "snap1"
}
HTTP/1.1 201
Connection: close
Content-Length: 170
Content-Type: application/json
2019-03-30 08:56:26 +00:00
Date: Sat, 30 Mar 2019 08:50:11 GMT
Server: Python/3.6 GNS3/2.2.0dev8
2018-01-08 08:26:44 +00:00
X-Route: /v2/projects/{project_id}/snapshots
{
2019-03-30 08:56:26 +00:00
"created_at": 1553935810,
2018-01-08 08:26:44 +00:00
"name": "snap1",
2019-03-30 08:56:26 +00:00
"project_id": "6b02daca-6b3b-4349-a874-af2259c033fa",
"snapshot_id": "252d6561-fc64-4e13-8313-639777f1c525"
2018-01-08 08:26:44 +00:00
}