1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-13 20:08:55 +00:00
gns3-server/docs/api/examples/controller_post_settings.txt

21 lines
383 B
Plaintext
Raw Normal View History

2018-01-08 08:26:44 +00:00
curl -i -X POST 'http://localhost:3080/v2/settings' -d '{"test": true}'
POST /v2/settings HTTP/1.1
{
"test": true
}
HTTP/1.1 201
Connection: close
Content-Length: 85
Content-Type: application/json
2018-06-07 08:26:06 +00:00
Date: Thu, 07 Jun 2018 08:14:08 GMT
Server: Python/3.6 GNS3/2.1.7dev1
2018-01-08 08:26:44 +00:00
X-Route: /v2/settings
{
2018-06-07 08:26:06 +00:00
"modification_uuid": "b3ac5dbb-d2fc-44d7-90bd-3984a63d608f",
2018-01-08 08:26:44 +00:00
"test": true
}