gns3-server/docs/api/examples/controller_post_servers.txt

31 lines
736 B
Plaintext
Raw Normal View History

2016-03-07 18:57:12 +02:00
curl -i -X POST 'http://localhost:8000/v2/servers' -d '{"host": "example.com", "password": "secure", "port": 84, "protocol": "http", "server_id": "my_server_id", "user": "julien"}'
2016-03-04 18:50:17 +02:00
2016-03-07 18:57:12 +02:00
POST /v2/servers HTTP/1.1
2016-03-04 18:50:17 +02:00
{
"host": "example.com",
"password": "secure",
"port": 84,
"protocol": "http",
"server_id": "my_server_id",
"user": "julien"
}
HTTP/1.1 201
ACCESS-CONTROL-ALLOW-ORIGIN: *
CONTENT-LENGTH: 176
CONTENT-TYPE: application/json
DATE: Thu, 08 Jan 2015 16:09:15 GMT
SERVER: Python/3.5 GNS3/1.5.0dev1
2016-03-07 18:57:12 +02:00
X-ROUTE: /v2/controller/servers
2016-03-04 18:50:17 +02:00
{
"connected": false,
"host": "example.com",
"port": 84,
"protocol": "http",
"server_id": "my_server_id",
"user": "julien",
"version": "1.5.0dev1"
}