API referenceApplicationsDeploy servers
List the applications deployed on the deploy server (uuid, status, public URL, image:tag)
Requires the deploy_servers:read permission.
AuthorizationBearer <token>
An access token from this zone's POST /oauth/token, or a session token from POST /api/v1/auth/login. Send it as Authorization: Bearer <token>.
In: header
Path Parameters
id*string
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/api/v1/deploy-servers/string/applications"{ "items": [ { "image": "string", "name": "string", "status": "string", "tag": "string", "url": "string", "uuid": "string" } ], "total": 0}Delete a deploy server (tears down the control plane + worker) DELETE
Previous Page
Create (and by default instantly deploy) an application from a docker image in the worker's local registry. Push the app folder with create_deploy_servers_id_artifacts and docker build+push on the worker FIRST. Returns the app uuid and public URL — poll get_deploy_servers_id_applications until status starts with 'running'. POST
Next Page