node-api/api.http

105 lines
1.5 KiB
Plaintext
Raw Normal View History

2020-07-11 11:04:37 +00:00
POST http://localhost:1323/v1/apps
2021-04-25 22:57:05 +00:00
Authorization: Token ABCD
2020-07-11 11:04:37 +00:00
Content-type: application/json
{
"name": "test_1234",
"ssh_port": 46502,
"http_port": 46503,
2020-07-11 11:04:37 +00:00
"image": "docker.io/rosti/runtime:2020.04-1",
"cpu": 100,
"memory": 128
2020-07-11 11:04:37 +00:00
}
###
PUT http://localhost:1323/v1/apps/test_1234
Content-type: application/json
{
2020-07-11 21:14:45 +00:00
"ssh_port": 46500,
2020-07-14 21:40:47 +00:00
"http_port": 46501,
"memory": 128
2020-07-11 11:04:37 +00:00
}
###
2020-07-13 22:01:42 +00:00
# Start
PUT http://localhost:1323/v1/apps/test_4567/start
2020-07-11 11:04:37 +00:00
Content-type: application/json
2020-07-11 21:14:45 +00:00
###
2020-07-15 21:32:28 +00:00
# Stop
2020-07-11 21:14:45 +00:00
PUT http://localhost:1323/v1/apps/test_1234/stop
Content-type: application/json
###
2020-07-13 22:01:42 +00:00
# Rebuild
PUT http://localhost:1323/v1/apps/test_1234/rebuild
Content-type: application/json
Authorization: Token fee60059-f554-4c35-b44f-74b6be377095
2020-07-13 22:01:42 +00:00
###
# Delete of app
DELETE http://localhost:1323/v1/apps/test_4567
2020-07-11 21:14:45 +00:00
Content-type: application/json
###
# Processes
2020-07-11 21:14:45 +00:00
GET http://localhost:1323/v1/apps/test_1234/processes
2020-07-11 21:14:45 +00:00
2020-07-15 21:32:28 +00:00
###
# Get
GET http://localhost:1323/v1/apps/test_1234
2020-07-15 21:32:28 +00:00
Content-type: application/json
2020-07-11 21:14:45 +00:00
###
2020-07-13 22:01:42 +00:00
# List of all apps
2020-07-11 21:14:45 +00:00
GET http://localhost:1323/v1/apps
Content-type: application/json
Authorization: Token fee60059-f554-4c35-b44f-74b6be377095
2020-07-16 21:24:09 +00:00
###
POST http://localhost:1323/v1/apps/test_1234/labels
Content-type: application/json
{
"Value": "userid:cx"
}
###
DELETE http://localhost:1323/v1/apps/test_1234/labels
Content-type: application/json
{
"Value": "userid:cx"
}
###
# Set password
PUT http://localhost:1323/v1/apps/test_1234/keys
Content-type: application/json
testrr