API reference

unbind service instance

  • path: /services/{service}/instances/{instance}/{app}
  • produce: application/x-json-stream
  • method: DELETE
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

list app certificates

  • path: /apps/{app}/certificate
  • consume: application/x-www-form-urlencoded
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

grant access to app

  • path: /apps/{app}/teams/{team}
  • method: PUT
  • 200: Access granted
  • 401: Unauthorized
  • 404: App or team not found
  • 409: Grant already exists

run commands

  • path: /apps/{app}/run
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

set unit status

  • path: /apps/{app}/units/{unit}
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: App or unit not found
  • 401: Unauthorized

app log

  • path: /apps/{app}/log
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

app list

  • path: /apps
  • produce: application/json
  • method: GET
  • 200: List apps
  • 401: Unauthorized
  • 204: No content

remove units

  • path: /apps/{name}/units
  • produce: application/x-json-stream
  • method: DELETE
  • 200: Units removed
  • 400: Invalid data
  • 403: Not enough reserved units
  • 404: App not found
  • 401: Unauthorized

unset app certificate

  • path: /apps/{app}/certificate
  • consume: application/x-www-form-urlencoded
  • method: DELETE
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

set envs

  • path: /apps/{app}/env
  • produce: application/x-json-stream
  • consume: application/json
  • method: POST
  • 200: Envs updated
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

unset envs

  • path: /apps/{app}/env
  • produce: application/x-json-stream
  • method: DELETE
  • 200: Envs removed
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

get envs

  • path: /apps/{app}/env
  • produce: application/x-json-stream
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: App not found

bind service instance

  • path: /services/{service}/instances/{instance}/{app}
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

app update

  • path: /apps/{name}
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: App updated
  • 400: Invalid new pool
  • 404: Not found
  • 401: Unauthorized

app stop

  • path: /apps/{app}/stop
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

metric envs

  • path: /apps/{app}/metric/envs
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

app sleep

  • path: /apps/{app}/sleep
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

app swap

  • path: /swap
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 401: Unauthorized
  • 404: App not found
  • 200: Ok
  • 409: App locked
  • 412: Number of units or platform don't match

app unlock

  • path: /apps/{app}/lock
  • produce: application/json
  • method: DELETE
  • 410: Not available anymore

register unit

  • path: /apps/{app}/units/register
  • produce: application/json
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

rebuild routes

  • path: /apps/{app}/routes
  • produce: application/json
  • method: POST
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

set node status

  • path: /node/status
  • produce: application/json
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: App or unit not found
  • 401: Unauthorized

set cname

  • path: /apps/{app}/cname
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

app restart

  • path: /apps/{app}/restart
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

app start

  • path: /apps/{app}/start
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

app version delete

  • path: /apps/{app}/versions/{version}
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: DELETE
  • 200: Ok
  • 401: Unauthorized
  • 404: Version not found

unset cname

  • path: /apps/{app}/cname
  • method: DELETE
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

set app certificate

  • path: /apps/{app}/certificate
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

remove app

  • path: /apps/{name}
  • produce: application/x-json-stream
  • method: DELETE
  • 200: App removed
  • 401: Unauthorized
  • 404: Not found

app create

  • path: /apps
  • produce: application/json
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: App created
  • 403: Quota exceeded
  • 401: Unauthorized
  • 409: App already exists

app log

  • path: /apps/{app}/log
  • produce: application/x-json-stream
  • method: GET
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

add units

  • path: /apps/{name}/units
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Units added
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

revoke access to app

  • path: /apps/{app}/teams/{team}
  • method: DELETE
  • 200: Access revoked
  • 401: Unauthorized
  • 403: Forbidden
  • 404: App or team not found

app info

  • path: /apps/{name}
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Not found

team update

  • path: /teams/{name}
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Team updated
  • 400: Invalid data
  • 404: Team not found
  • 401: Unauthorized

team info

  • path: /teams/{name}
  • produce: application/json
  • method: GET
  • 200: Info team
  • 401: Unauthorized
  • 404: Not found

user list

  • path: /users
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized

change password

  • path: /users/password
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Ok
  • 400: Invalid data
  • 403: Forbidden
  • 404: Not found
  • 401: Unauthorized

remove team

  • path: /teams/{name}
  • method: DELETE
  • 200: Team removed
  • 401: Unauthorized
  • 403: Forbidden
  • 404: Not found

team create

  • path: /teams
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: Team created
  • 401: Unauthorized
  • 409: Team already exists

user create

  • path: /users
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: User created
  • 403: Forbidden
  • 401: Unauthorized
  • 409: User already exists

login

  • path: /auth/login
  • produce: application/json
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 403: Forbidden
  • 404: Not found
  • 401: Unauthorized

get auth scheme

  • path: /auth/scheme
  • produce: application/json
  • method: GET
  • 200: OK

regenerate token

  • path: /users/api-key
  • produce: application/json
  • method: POST
  • 200: OK
  • 401: Unauthorized
  • 404: User not found

reset password

  • path: /users/{email}/password
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 403: Forbidden
  • 404: Not found
  • 401: Unauthorized

team list

  • path: /teams
  • produce: application/json
  • method: GET
  • 200: List teams
  • 401: Unauthorized
  • 204: No content

show token

  • path: /users/api-key
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: User not found

user info

  • path: /users/info
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized

logout

  • path: /users/tokens
  • method: DELETE
  • 200: Ok

remove user

  • path: /users
  • method: DELETE
  • 200: User removed
  • 401: Unauthorized
  • 404: Not found

list autoscale history

  • path: /autoscale
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 204: No content

autoscale run

  • path: /autoscale/run
  • produce: application/x-json-stream
  • method: POST
  • 200: Ok
  • 401: Unauthorized

get autoscale config

  • path: /autoscale/config
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized

autoscale rules list

  • path: /autoscale/rules
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 204: No content

autoscale set rule

  • path: /autoscale/rules
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 401: Unauthorized

delete autoscale rule

  • path: /autoscale/rules/{id}
  • method: DELETE
  • 200: Ok
  • 401: Unauthorized
  • 404: Not found

app build

  • path: /apps/{appname}/build
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: OK
  • 400: Invalid data
  • 403: Forbidden
  • 404: Not found

list provisioners

  • path: /provisioner
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 204: No Content

create provisioner cluster

  • path: /provisioner/clusters
  • produce: application/x-json-stream
  • consume: application/json
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: Pool does not exist
  • 401: Unauthorized
  • 409: Cluster already exists

update provisioner cluster

  • path: /provisioner/clusters/{name}
  • produce: application/x-json-stream
  • consume: application/json
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: Cluster not found
  • 401: Unauthorized

list provisioner clusters

  • path: /provisioner/clusters
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 204: No Content

provisioner cluster info

  • path: /provisioner/clusters/{name}
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: Cluster not found

delete provisioner cluster

  • path: /provisioner/clusters/{name}
  • produce: application/x-json-stream
  • method: DELETE
  • 200: Ok
  • 401: Unauthorized
  • 404: Cluster not found

dump goroutines

  • path: /debug/goroutines
  • method: GET
  • 200: Ok

deploy diff

  • path: /apps/{appname}/diff
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 410: Gone

deploy info

  • path: /deploys/{deploy}
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Not found

rebuild

  • path: /apps/{app}/deploy/rebuild
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: OK
  • 400: Invalid data
  • 403: Forbidden
  • 404: Not found

rollback update

  • path: /apps/{app}/deploy/rollback/update
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Rollback updated
  • 400: Invalid data
  • 403: Forbidden

app deploy

  • path: /apps/{appname}/deploy
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: OK
  • 400: Invalid data
  • 403: Forbidden
  • 404: Not found

rollback

  • path: /apps/{app}/deploy/rollback
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: OK
  • 400: Invalid data
  • 403: Forbidden
  • 404: Not found

deploy list

  • path: /deploys
  • produce: application/json
  • method: GET
  • 200: OK
  • 204: No content

event block list

  • path: /events/blocks
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 204: No content

add event block

  • path: /events/blocks
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: OK
  • 400: Invalid data or empty reason
  • 401: Unauthorized

remove event block

  • path: /events/blocks/{uuid}
  • method: DELETE
  • 200: OK
  • 400: Invalid uuid
  • 404: Active block with provided uuid not found
  • 401: Unauthorized

event list

  • path: /events
  • produce: application/json
  • method: GET
  • 200: OK
  • 204: No content

kind list

  • path: /events/kinds
  • produce: application/json
  • method: GET
  • 200: OK
  • 204: No content

event info

  • path: /events/{uuid}
  • produce: application/json
  • method: GET
  • 200: OK
  • 400: Invalid uuid
  • 404: Not found
  • 401: Unauthorized

event cancel

  • path: /events/{uuid}/cancel
  • produce: application/json
  • method: POST
  • 400: Invalid uuid or empty reason
  • 401: Unauthorized
  • 404: Not found
  • 204: OK

docker healing history

  • path: /docker/healing
  • produce: application/json
  • method: GET
  • 200: Ok
  • 400: Invalid data
  • 204: No content
  • 401: Unauthorized

healthcheck

  • path: /healthcheck
  • method: GET
  • 200: OK
  • 500: Internal server error

template update

  • path: /iaas/templates/{template_name}
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: OK
  • 400: Invalid data
  • 404: Not found
  • 401: Unauthorized

machine list

  • path: /iaas/machines
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized

machine destroy

  • path: /iaas/machines/{machine_id}
  • method: DELETE
  • 200: OK
  • 400: Invalid data
  • 404: Not found
  • 401: Unauthorized

machine template list

  • path: /iaas/templates
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized

template create

  • path: /iaas/templates
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: Template created
  • 401: Unauthorized
  • 409: Existent template

template destroy

  • path: /iaas/templates/{template_name}
  • method: DELETE
  • 200: OK
  • 401: Unauthorized
  • 404: Not found

index

  • path: /
  • method: GET
  • 200: OK

api info

  • path: /info
  • produce: application/json
  • method: GET
  • 200: OK

add install host

  • path: /install/hosts
  • produce: application/json
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 201: Host added
  • 401: Unauthorized

install host info

  • path: /install/hosts/{name}
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Not Found

list install hosts

  • path: /install/hosts
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized

remove node

  • path: /{provisioner}/node/{address}
  • method: DELETE
  • 200: Ok
  • 401: Unauthorized
  • 404: Not found

list units by node

  • path: /{provisioner}/node/{address}/containers
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: Not found
  • 204: No content

node healing update

  • path: /healing/node
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 401: Unauthorized

node info

  • path: /node/{address}
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: Not found

list units by app

  • path: /docker/node/apps/{appname}/containers
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: Not found
  • 204: No content

node healing info

  • path: /healing/node
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized

remove node healing

  • path: /healing/node
  • produce: application/json
  • method: DELETE
  • 200: Ok
  • 401: Unauthorized

add node

  • path: /node
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 201: Ok
  • 404: Not found
  • 401: Unauthorized

list nodes

  • path: /{provisioner}/node
  • produce: application/json
  • method: GET
  • 200: Ok
  • 204: No content

update nodes

  • path: /{provisioner}/node
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Ok
  • 400: Invalid data
  • 404: Not found
  • 401: Unauthorized

rebalance units in nodes

  • path: /node/rebalance
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 401: Unauthorized

remove node container list

  • path: /docker/nodecontainers
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized

node container create

  • path: /docker/nodecontainers
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invald data
  • 401: Unauthorized

node container info

  • path: /docker/nodecontainers/{name}
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: Not found

node container update

  • path: /docker/nodecontainers/{name}
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invald data
  • 404: Not found
  • 401: Unauthorized

remove node container

  • path: /docker/nodecontainers/{name}
  • method: DELETE
  • 200: Ok
  • 401: Unauthorized
  • 404: Not found

node container upgrade

  • path: /docker/nodecontainers/{name}/upgrade
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invald data
  • 404: Not found
  • 401: Unauthorized

remove permission

  • path: /roles/{name}/permissions/{permission}
  • method: DELETE
  • 200: Permission removed
  • 401: Unauthorized
  • 404: Not found

assign role to token

  • path: /roles/{name}/token
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: Role or team token not found
  • 401: Unauthorized

assign role to user

  • path: /roles/{name}/user
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: Role not found
  • 401: Unauthorized

list permissions

  • path: /permissions
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized

list default roles

  • path: /role/default
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized

dissociate role from group

  • path: /roles/{name}/group/{group_name}
  • method: DELETE
  • 200: Ok
  • 400: Invalid data
  • 404: Role not found
  • 401: Unauthorized

remove role

  • path: /roles/{name}
  • method: DELETE
  • 200: Role removed
  • 401: Unauthorized
  • 404: Role not found
  • 412: Role with users

role info

  • path: /roles/{name}
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Role not found

add permissions

  • path: /roles/{name}/permissions
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 401: Unauthorized
  • 409: Permission not allowed

add default role

  • path: /role/default
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 401: Unauthorized

updates a role

  • path: /roles
  • method: PUT
  • 200: Ok
  • 400: Invalid data
  • 401: Unauthorized

dissociate role from user

  • path: /roles/{name}/user/{email}
  • method: DELETE
  • 200: Ok
  • 400: Invalid data
  • 404: Role not found
  • 401: Unauthorized

dissociate role from token

  • path: /roles/{name}/token/{token_id}
  • method: DELETE
  • 200: Ok
  • 400: Invalid data
  • 404: Role or team token not found
  • 401: Unauthorized

assign role to group

  • path: /roles/{name}/group
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: Role not found
  • 401: Unauthorized

role create

  • path: /roles
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: Role created
  • 401: Unauthorized
  • 409: Role already exists

role list

  • path: /roles
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized

remove default role

  • path: /role/default
  • method: DELETE
  • 200: Ok
  • 400: Invalid data
  • 401: Unauthorized

remove plan

  • path: /plans/{name}
  • method: DELETE
  • 200: Plan removed
  • 401: Unauthorized
  • 404: Plan not found

plan create

  • path: /plans
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: Plan created
  • 401: Unauthorized
  • 409: Plan already exists

plan list

  • path: /plans
  • produce: application/json
  • method: GET
  • 200: OK
  • 204: No content

add platform

  • path: /platforms
  • produce: application/x-json-stream
  • consume: multipart/form-data
  • method: POST
  • 200: Platform created
  • 400: Invalid data
  • 401: Unauthorized

update platform

  • path: /platforms/{name}
  • produce: application/x-json-stream
  • method: PUT
  • 200: Platform updated
  • 401: Unauthorized
  • 404: Not found

remove platform

  • path: /platforms/{name}
  • method: DELETE
  • 200: Platform removed
  • 401: Unauthorized
  • 404: Not found

platform list

  • path: /platforms
  • produce: application/json
  • method: GET
  • 200: List platforms
  • 401: Unauthorized
  • 204: No content

platform info

  • path: /platforms/{name}
  • produce: application/json
  • method: GET
  • 200: Platform info
  • 401: Unauthorized
  • 404: NotFound

rollback platform

  • path: /platforms/{name}/rollback
  • produce: application/x-json-stream
  • method: POST
  • 200: OK
  • 400: BadRequest
  • 404: Not found
  • 401: Unauthorized

pool get

  • path: /pools/{name}
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Not found

add team too pool

  • path: /pools/{name}/team
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Pool updated
  • 401: Unauthorized
  • 400: Invalid data
  • 404: Pool not found

set a pool constraint

  • path: /constraints
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: OK
  • 401: Unauthorized

pool list

  • path: /pools
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 204: No content

pool create

  • path: /pools
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: Pool created
  • 401: Unauthorized
  • 409: Pool already exists

remove pool

  • path: /pools/{name}
  • method: DELETE
  • 200: Pool removed
  • 401: Unauthorized
  • 403: Pool still has apps
  • 404: Pool not found

remove team from pool

  • path: /pools/{name}/team
  • method: DELETE
  • 200: Pool updated
  • 401: Unauthorized
  • 400: Invalid data
  • 404: Pool not found

pool update

  • path: /pools/{name}
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Pool updated
  • 401: Unauthorized
  • 404: Pool not found
  • 409: Default pool already defined

pool constraints list

  • path: /constraints
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 204: No content

application quota

  • path: /apps/{app}/quota
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Application not found

update application quota

  • path: /apps/{app}/quota
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Quota updated
  • 400: Invalid data
  • 403: Limit lower than allocated
  • 404: Application not found
  • 401: Unauthorized

team quota

  • path: /teams/{name}/quota
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Team not found

update team quota

  • path: /teams/{name}/quota
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Quota updated
  • 400: Invalid data
  • 403: Limit lower than allocated value
  • 404: Team not found
  • 401: Unauthorized

user quota

  • path: /users/{email}/quota
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: User not found

update user quota

  • path: /users/{email}/quota
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Quota updated
  • 400: Invalid data
  • 403: Limit lower than allocated value
  • 404: User not found
  • 401: Unauthorized

router list

  • path: /routers
  • produce: application/json
  • method: GET
  • 200: OK
  • 204: No content

add app router

  • path: /app/{app}/routers
  • produce: application/json
  • method: POST
  • 200: OK
  • 400: Invalid request
  • 404: App or router not found

update app router

  • path: /app/{app}/routers/{name}
  • produce: application/json
  • method: PUT
  • 200: OK
  • 400: Invalid request
  • 404: App or router not found

list app routers

  • path: /app/{app}/routers
  • produce: application/json
  • method: GET
  • 200: OK
  • 204: No content
  • 404: App not found

toggle an app version as routable

  • path: /app/{app}/routable
  • method: POST
  • 200: OK
  • 400: Bad request
  • 404: App not found
  • 401: Not authorized

router add

  • path: /routers
  • method: POST
  • 400: Invalid router
  • 201: Created
  • 409: Router already exists

router delete

  • path: /routers/{name}
  • method: DELETE
  • 200: OK
  • 404: Router not found

router update

  • path: /routers/{name}
  • method: PUT
  • 200: OK
  • 400: Invalid router
  • 404: Router not found

delete app router

  • path: /app/{app}/routers/{router}
  • produce: application/json
  • method: DELETE
  • 200: OK
  • 404: App or router not found

saml metadata

  • path: /auth/saml
  • produce: application/xml
  • method: GET
  • 200: Ok
  • 400: Invalid data

saml callback

  • path: /auth/saml
  • method: POST
  • 200: Ok
  • 400: Invalid data

units autoscale info

  • path: /apps/{app}/units/autoscale
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

add unit auto scale

  • path: /apps/{app}/units/autoscale
  • consume: application/json
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: App not found
  • 401: Unauthorized

remove unit auto scale

  • path: /apps/{app}/units/autoscale
  • consume: application/json
  • method: POST
  • 200: Ok
  • 401: Unauthorized
  • 404: App not found

grant access to a service

  • path: /services/{service}/team/{team}
  • method: PUT
  • 200: Service updated
  • 400: Team not found
  • 404: Service not found
  • 401: Unauthorized
  • 409: Team already has access to this service

revoke access to a service

  • path: /services/{service}/team/{team}
  • method: DELETE
  • 200: Access revoked
  • 400: Team not found
  • 404: Service not found
  • 401: Unauthorized
  • 409: Team does not has access to this service

service list

  • path: /services
  • produce: application/json
  • method: GET
  • 200: List services
  • 401: Unauthorized
  • 204: No content

service update

  • path: /services/{name}
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Service updated
  • 400: Invalid data
  • 403: Forbidden (team is not the owner)
  • 404: Service not found
  • 401: Unauthorized

service delete

  • path: /services/{name}
  • method: DELETE
  • 200: Service removed
  • 401: Unauthorized
  • 403: Forbidden (team is not the owner or service with instances)
  • 404: Service not found

service proxy

  • path: /services/proxy/service/{service}
  • method: *
  • 401: Unauthorized
  • 404: Service not found

service create

  • path: /services
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: Service created
  • 401: Unauthorized
  • 409: Service already exists

change service documentation

  • path: /services/{name}/doc
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Documentation updated
  • 401: Unauthorized
  • 403: Forbidden (team is not the owner or service with instances)

service broker list

  • path: /brokers
  • produce: application/json
  • method: GET
  • 200: List service brokers
  • 401: Unauthorized
  • 204: No content

Add service broker

  • path: /brokers
  • method: POST
  • 401: Unauthorized
  • 409: Broker already exists
  • 201: Service broker created

Update service broker

  • path: /brokers/{broker}
  • method: PUT
  • 200: Service broker updated
  • 401: Unauthorized
  • 404: Not Found

Delete service broker

  • path: /brokers/{broker}
  • method: DELETE
  • 200: Service broker deleted
  • 401: Unauthorized
  • 404: Not Found

service instance info

  • path: /services/{service}/instances/{instance}
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Service instance not found

revoke access to service instance

  • path: /services/{service}/instances/permission/{instance}/{team}
  • method: DELETE
  • 200: Access revoked
  • 401: Unauthorized
  • 404: Service instance not found

service instance create

  • path: /services/{service}/instances
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 400: Invalid data
  • 201: Service created
  • 401: Unauthorized
  • 409: Service already exists

remove service instance

  • path: /services/{name}/instances/{instance}
  • produce: application/x-json-stream
  • method: DELETE
  • 200: Service removed
  • 400: Bad request
  • 404: Service instance not found
  • 401: Unauthorized

service instance list

  • path: /services/instances
  • produce: application/json
  • method: GET
  • 200: List services instances
  • 401: Unauthorized
  • 204: No content

service doc

  • path: /services/{name}/doc
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Not found

service instance proxy

  • path: /services/{service}/proxy/{instance}
  • method: *
  • 401: Unauthorized
  • 404: Instance not found

service info

  • path: /services/{name}
  • produce: application/json
  • method: GET
  • 200: OK

service plans

  • path: /services/{name}/plans
  • produce: application/json
  • method: GET
  • 200: OK
  • 401: Unauthorized
  • 404: Service not found

grant access to service instance

  • path: /services/{service}/instances/permission/{instance}/{team}
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Access granted
  • 401: Unauthorized
  • 404: Service instance not found

service instance update

  • path: /services/{service}/instances/{instance}
  • consume: application/x-www-form-urlencoded
  • method: PUT
  • 200: Service instance updated
  • 400: Invalid data
  • 404: Service instance not found
  • 401: Unauthorized

service instance status

  • path: /services/{service}/instances/{instance}/status
  • method: GET
  • 200: List services instances
  • 401: Unauthorized
  • 404: Service instance not found

app shell

  • path: /apps/{name}/shell
  • produce: Websocket connection upgrade
  • method: GET
  • 101: Switch Protocol to websocket

token delete

  • path: /tokens/{token_id}
  • produce: application/json
  • method: DELETE
  • 200: Token created
  • 401: Unauthorized
  • 404: Token not found

token list

  • path: /tokens
  • produce: application/json
  • method: GET
  • 200: List tokens
  • 401: Unauthorized
  • 204: No content

token info

  • path: /tokens/{token_id}
  • produce: application/json
  • method: GET
  • 200: Get token
  • 401: Unauthorized

token create

  • path: /tokens
  • produce: application/json
  • method: POST
  • 401: Unauthorized
  • 409: Token already exists
  • 201: Token created

token update

  • path: /tokens/{token_id}
  • produce: application/json
  • method: PUT
  • 200: Token updated
  • 401: Unauthorized
  • 404: Token not found

volume plan list

  • path: /volumeplans
  • produce: application/json
  • method: GET
  • 200: List volume plans
  • 401: Unauthorized

volume bind

  • path: /volumes/{name}/bind
  • produce: application/json
  • method: POST
  • 200: Volume binded
  • 401: Unauthorized
  • 404: Volume not found
  • 409: Volume bind already exists

volume unbind

  • path: /volumes/{name}/bind
  • produce: application/json
  • method: DELETE
  • 200: Volume unbinded
  • 401: Unauthorized
  • 404: Volume not found

volume info

  • path: /volumes/{name}
  • produce: application/json
  • method: GET
  • 200: Show volume
  • 401: Unauthorized
  • 404: Volume not found

volume create

  • path: /volumes
  • produce: application/json
  • method: POST
  • 401: Unauthorized
  • 409: Volume already exists
  • 201: Volume created

volume delete

  • path: /volumes/{name}
  • produce: application/json
  • method: DELETE
  • 200: Volume deleted
  • 401: Unauthorized
  • 404: Volume not found

volume list

  • path: /volumes
  • produce: application/json
  • method: GET
  • 200: List volumes
  • 401: Unauthorized
  • 204: No content

volume update

  • path: /volumes/{name}
  • produce: application/json
  • method: POST
  • 200: Volume updated
  • 401: Unauthorized
  • 404: Volume not found

webhook list

  • path: /events/webhooks
  • produce: application/json
  • method: GET
  • 200: List webhooks
  • 204: No content

webhook info

  • path: /events/webhooks/{name}
  • produce: application/json
  • method: GET
  • 200: Get webhook
  • 401: Unauthorized
  • 404: Not found

webhook create

  • path: /events/webhooks
  • method: POST
  • 200: Webhook created
  • 401: Unauthorized
  • 400: Invalid webhook
  • 409: Webhook already exists

webhook update

  • path: /events/webhooks/{name}
  • method: PUT
  • 200: Webhook updated
  • 401: Unauthorized
  • 400: Invalid webhook
  • 404: Webhook not found

webhook delete

  • path: /events/webhooks/{name}
  • method: DELETE
  • 200: Webhook deleted
  • 401: Unauthorized
  • 404: Webhook not found

logs config set

  • path: /docker/logs
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 401: Unauthorized

move container

  • path: /docker/container/{id}/move
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: Not found
  • 401: Unauthorized

logs config

  • path: /docker/logs
  • produce: application/json
  • method: GET
  • 200: Ok
  • 401: Unauthorized

move containers

  • path: /docker/containers/move
  • produce: application/x-json-stream
  • consume: application/x-www-form-urlencoded
  • method: POST
  • 200: Ok
  • 400: Invalid data
  • 404: Not found
  • 401: Unauthorized

Swagger Spec based reference

GET /1.0/services

List services

Status Codes:
POST /1.0/services

Creates a new service

Status Codes:
GET /1.0/services/{name}

Information on a service

Parameters:
  • name (string) – Service name.
Status Codes:
PUT /1.0/services/{name}

Updates a service

Parameters:
  • name (string) – Service name.
Status Codes:
DELETE /1.0/services/{name}

Delete a service

Parameters:
  • name (string) – Service name.
Status Codes:
GET /1.0/services/{name}/plans

Plans for a service

Parameters:
  • name (string) – Service name.
Query Parameters:
 
  • pool (string) –
Status Codes:
GET /1.0/services/{name}/doc

Documentation on a service

Parameters:
  • name (string) – Service name.
Status Codes:
PUT /1.0/services/{name}/doc

Documentation on a service

Parameters:
  • name (string) – Service name.
Status Codes:
PUT /1.0/services/{service}/team/{team}

Grant access to team for the service

Parameters:
  • service (string) – Service name.
  • team (string) – Team name
Status Codes:
DELETE /1.0/services/{service}/team/{team}

Revoke access to team for the service

Parameters:
  • service (string) – Service name.
  • team (string) – Team name
Status Codes:
GET /1.0/services/instances

List service instances

Query Parameters:
 
  • app (string) – Filter instances by app name
Status Codes:
POST /1.0/services/{service}/instances

Create a service instance

Parameters:
  • service (string) – Service name.
Status Codes:
GET /1.0/services/{service}/instances/{instance}

Get service instance information

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
Status Codes:
PUT /1.0/services/{service}/instances/{instance}

Update a service instance

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
Status Codes:
DELETE /1.0/services/{service}/instances/{instance}

Remove service instance

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
Query Parameters:
 
  • unbindall (boolean) – Remove current binds to this instance
Status Codes:
PUT /1.0/services/{service}/instances/{instance}/{app}

Bind the service instance to app

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
  • app (string) – App name.
Status Codes:
DELETE /1.0/services/{service}/instances/{instance}/{app}

Unbind the service instance from app

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
  • app (string) – App name.
Status Codes:
GET /1.0/services/{service}/instances/{instance}/status

Status for service instance

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
Status Codes:
PUT /1.0/services/{service}/instances/permission/{instance}/{team}

Grant access to team for this service instance

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
  • team (string) – Team name.
Status Codes:
DELETE /1.0/services/{service}/instances/permission/{instance}/{team}

Revoke access to team for this service instance

Parameters:
  • service (string) – Service name.
  • instance (string) – Instance name.
  • team (string) – Team name.
Status Codes:
GET /1.7/brokers

List service brokers

Status Codes:
POST /1.7/brokers

Create service broker

Status Codes:
DELETE /1.7/brokers/{name}
Parameters:
  • name (string) – Service Broker name.
Status Codes:
PUT /1.7/brokers/{name}

Update service broker

Parameters:
  • name (string) – Service Broker name.
Status Codes:
GET /1.0/plans

List plans.

Status Codes:
POST /1.0/plans

Create a new plan

Status Codes:
DELETE /1.0/plans/{plan}

Remove a plan

Parameters:
  • plan (string) – Remove current plan
Status Codes:
GET /1.0/apps

List apps.

Query Parameters:
 
  • locked (boolean) – Filter applications by lock status.
  • name (string) – Filter applications by name.
  • owner (string) – Filter applications by owner.
  • platform (string) – Filter applications by platform.
  • pool (string) – Filter applications by pool.
  • status (string) – Filter applications by unit status.
  • tag (array) – Filter applications by tag.
  • teamOwner (string) – Filter applications by team owner.
  • simplified (boolean) – Returns applications without units list.
Status Codes:
POST /1.0/apps

Create a new app.

Status Codes:
GET /1.0/apps/{app}

Get info about a tsuru app.

Parameters:
  • app (string) – App name.
Status Codes:
DELETE /1.0/apps/{app}

Delete a tsuru app.

Parameters:
  • app (string) – App name.
Status Codes:
PUT /1.0/apps/{app}

Update a tsuru app.

Parameters:
  • app (string) – App name.
Status Codes:
PUT /1.0/apps/{app}/certificate

Create a certificate

Parameters:
  • app (string) – App name.
Status Codes:
DELETE /1.0/apps/{app}/certificate

Unset app certificate.

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.0/apps/{app}/deploy

deploy a app

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.0/apps/{app}/cname

adds a cname to app

Parameters:
  • app (string) – App name.
Status Codes:
DELETE /1.0/apps/{app}/cname

remove cname from app

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.0/apps/{app}/run

run commands inside an app

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.0/apps/{app}/env

Set new environment variable.

Parameters:
  • app (string) – App name.
Status Codes:
GET /1.0/apps/{app}/env

Get app environment variables.

Parameters:
  • app (string) – App name.
Query Parameters:
 
  • env (string) – Environment variable name.
Status Codes:
DELETE /1.0/apps/{app}/env

Unset app environment variables.

Parameters:
  • app (string) – App name.
Query Parameters:
 
  • env (array) –
  • norestart (boolean) –
Status Codes:
GET /1.0/apps/{app}/quota

Shows app usage info and its quota limit.

Parameters:
  • app (string) – App name.
Status Codes:
PUT /1.0/apps/{app}/quota

Changes the maximum limit of units allowed for use.

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.0/apps/{app}/start

Start App.

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.0/apps/{app}/stop

Stop App.

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.0/apps/{app}/restart

Restart App.

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.8/apps/{app}/routable

Sets a version as routable.

Parameters:
  • app (string) – App name.
Status Codes:
GET /1.5/apps/{app}/routers

list routers from an app

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.5/apps/{app}/routers

adds a router to app

Parameters:
  • app (string) – App name.
Status Codes:
PUT /1.5/apps/{app}/routers/{router}

update a router

Parameters:
  • app (string) – App name.
  • router (string) – Router name
Status Codes:
DELETE /1.5/apps/{app}/routers/{router}

Delete a tsuru app.

Parameters:
  • app (string) – App name.
  • router (string) – Router name
Status Codes:
PUT /1.0/apps/{app}/teams/{team}

grant access to a team

Parameters:
  • app (string) – App name.
  • team (string) – Team name
Status Codes:
DELETE /1.0/apps/{app}/teams/{team}

grant access to a team

Parameters:
  • app (string) – App name.
  • team (string) – Team name
Status Codes:
PUT /1.0/apps/{app}/units

Add units to app

Parameters:
  • app (string) – App name.
Status Codes:
DELETE /1.0/apps/{app}/units

Remove units from app

Parameters:
  • app (string) – App name.
Status Codes:
GET /1.9/apps/{app}/units/autoscale

List autoscales for app.

Parameters:
  • app (string) – App name.
Status Codes:
POST /1.9/apps/{app}/units/autoscale

Add new unit autoscale spec.

Parameters:
  • app (string) – App name.
Status Codes:
DELETE /1.9/apps/{app}/units/autoscale

Remove unit autoscale spec.

Parameters:
  • app (string) – App name.
Query Parameters:
 
  • process (string) –
Status Codes:
DELETE /1.0/platforms/{platform}

Delete platform.

Parameters:
  • platform (string) – Platform name.
Status Codes:
PUT /1.0/platforms/{platform}

Update platform.

Parameters:
  • platform (string) – Platform name.
Status Codes:
GET /1.0/platforms

List platforms.

Status Codes:
POST /1.0/platforms

Add new platform.

Status Codes:
GET /1.6/platforms/{platform}

Platform info.

Parameters:
  • platform (string) – Platform info.
Status Codes:
POST /1.6/platforms/{platform}/rollback

Platform rollback.

Parameters:
  • platform (string) – Platform name.
Query Parameters:
 
  • image (string) –
Status Codes:
GET /1.0/teams

List teams.

Status Codes:
POST /1.0/teams

Create a team.

Status Codes:
DELETE /1.0/teams/{team}

Delete a team.

Parameters:
  • team (string) – Team name.
Status Codes:
GET /1.4/teams/{team}

Get a team.

Parameters:
  • team (string) – Team name.
Status Codes:
PUT /1.6/teams/{team}

Update a team.

Parameters:
  • team (string) – Team name.
Status Codes:
GET /1.12/teams/{team}/quota

Get quota of a team.

Parameters:
  • team (string) – Team name.
Status Codes:
PUT /1.12/teams/{team}/quota

Changes the team’s apps limit.

Parameters:
  • team (string) – Team name.
Status Codes:
GET /1.0/users

List users.

Query Parameters:
 
  • userEmail (string) –
  • role (string) –
  • context (string) –
Status Codes:
POST /1.0/users

Create a new user.

Status Codes:
DELETE /1.0/users

Delete an user.

Query Parameters:
 
  • email (string) – User e-mail.
Status Codes:
GET /1.0/users/api-key

Show the API token of an user.

Query Parameters:
 
  • email (string) –
Status Codes:
POST /1.0/users/api-key

Regenerate the API Token of an user.

Query Parameters:
 
  • email (string) –
Status Codes:
GET /1.0/users/keys

Show the list of the ssh keys of logged user.

Status Codes:
POST /1.0/users/keys

Add SSH key to logged user.

Status Codes:
DELETE /1.0/users/keys/{key}

Delete one ssh key of logged user.

Parameters:
  • key (string) –
Status Codes:
GET /1.0/users/info

Get information on logged user.

Status Codes:
GET /1.0/users/{email}/quota

Get quota of an user.

Parameters:
  • email (string) – User e-mail.
Status Codes:
PUT /1.0/users/{email}/quota

Change quota of an user.

Parameters:
  • email (string) – User e-mail.
Query Parameters:
 
  • limit (integer) – User new quota.
Status Codes:
PUT /1.0/users/password

Change password of logged user.

Status Codes:
POST /1.0/users/{email}/password

Reset password of an user.

Parameters:
  • email (string) –
Status Codes:
DELETE /1.0/users/tokens

Logout.

Status Codes:
GET /1.2/node

List nodes.

Status Codes:
POST /1.2/node

Add a node.

Status Codes:
PUT /1.2/node

Update node.

Status Codes:
DELETE /1.2/node/{address}

Remove node.

Parameters:
  • address (string) – Node address.
Query Parameters:
 
  • no-rebalance (boolean) – Trigger node rebalance.
  • remove-iaas (boolean) – Remove machine from IaaS.
Status Codes:
GET /1.2/node/{address}

Get node information.

Parameters:
  • address (string) – Node address.
Status Codes:
GET /1.4/volumes

List volumes.

Status Codes:
POST /1.4/volumes

Create volume.

Status Codes:
GET /1.0/pools

List pools.

Status Codes:
POST /1.0/pools

Creates a pool.

Status Codes:
GET /pools/{pool}

Get pool information

Parameters:
  • pool (string) –
Status Codes:
DELETE /pools/{pool}

Deletes a pool.

Parameters:
  • pool (string) –
Status Codes:
PUT /pools/{pool}

Updates a pool.

Parameters:
  • pool (string) –
Status Codes:
GET /1.3/provisioner/clusters

List cluster

Status Codes:
POST /1.3/provisioner/clusters

Create cluster.

Status Codes:
DELETE /1.3/provisioner/clusters/{cluster_name}

Delete cluster.

Parameters:
  • cluster_name (string) – Cluster name.
Status Codes:
POST /1.4/provisioner/clusters/{cluster_name}

Update cluster.

Parameters:
  • cluster_name (string) – Cluster name.
Status Codes:
GET /1.8/provisioner/clusters/{cluster_name}

Cluster info

Parameters:
  • cluster_name (string) – Cluster name.
Status Codes:
DELETE /1.4/volumes/{volume}

Delete volume.

Parameters:
  • volume (string) – Volume name.
Status Codes:
PUT /1.4/volumes/{volume}

Update volume.

Parameters:
  • volume (string) – Volume name.
Status Codes:
GET /1.4/volumes/{volume}

Get a volume.

Parameters:
  • volume (string) – Volume name.
Status Codes:
POST /1.4/volumes/{volume}/bind

Bind volume.

Parameters:
  • volume (string) – Volume name.
Status Codes:
DELETE /1.4/volumes/{volume}/bind

Unbind volume.

Parameters:
  • volume (string) – Volume name.
Status Codes:
GET /1.4/volumeplans

List volume plans.

Status Codes:
POST /1.0/roles

create a role

Status Codes:
PUT /1.0/roles

update a role

Status Codes:
DELETE /1.0/roles/{role_name}

delete a role

Parameters:
  • role_name (string) –
Status Codes:
POST /1.0/roles/{role_name}/permissions

add a permission

Parameters:
  • role_name (string) –
Status Codes:
DELETE /1.0/roles{role_name}/permissions/{permission}

remove a permission

Parameters:
  • role_name (string) –
  • permission (string) –
Status Codes:
POST /1,0/roles/{role_name}/user

assign a role

Parameters:
  • role_name (string) –
Status Codes:
DELETE /1.0/roles/{role_name}/user/{email}

Dissociate a role from user

Parameters:
  • role_name (string) –
  • email (string) –
Status Codes:
POST /1.0/role/default

add a default role

Status Codes:
DELETE /1.0/role/default

Delete a Default role

Status Codes:
POST /1.6/roles/{role_name}/token

Assigns a role to a team token.

Parameters:
  • role_name (string) –
Status Codes:
DELETE /1.6/roles/{role_name}/token/{token_id}

Dissociates a role from a team token.

Parameters:
  • role_name (string) –
  • token_id (string) –
Query Parameters:
 
  • context (string) –
Status Codes:
GET /1.6/tokens

List team tokens.

Status Codes:
POST /1.6/tokens

Creates a team token.

Status Codes:
DELETE /1.6/tokens/{token_id}

Deletes a team token.

Parameters:
  • token_id (string) – Token ID.
Status Codes:
PUT /1.6/tokens/{token_id}

Updates a team token.

Parameters:
  • token_id (string) – Token ID.
Status Codes:
GET /1.7/tokens/{token_id}

Shows information about a specific token.

Parameters:
  • token_id (string) – Token ID.
Status Codes:
POST /1.1/events/{eventid}/cancel
Parameters:
  • eventid (string) –
Status Codes:
GET /1.6/events/webhooks
Status Codes:
POST /1.6/events/webhooks
Status Codes:
GET /1.6/events/webhooks/{name}
Parameters:
  • name (string) – Webhook name.
Status Codes:
PUT /1.6/events/webhooks/{name}
Parameters:
  • name (string) – Webhook name.
Status Codes:
DELETE /1.6/events/webhooks/{name}
Parameters:
  • name (string) – Webhook name.
Status Codes:
GET /1.7/provisioner

List provisioners

Status Codes:
GET /1.3/constraints

List pool constraints

Status Codes:
PUT /1.3/constraints

Update a service instance

Status Codes:
GET /1.3/routers

List available routers

Status Codes:
POST /1.8/routers

Adds a new dynamic router

Status Codes:
PUT /1.8/routers/{name}

Updates a dynamic router

Parameters:
  • name (string) – Dynamic router name.
Status Codes:
DELETE /1.8/routers/{name}

Deletes a dynamic router

Parameters:
  • name (string) – Dynamic router name.
Status Codes:
POST /1.2/nodecontainers

Creates container that runs on every node

Status Codes:
POST /1.9/roles/{role_name}/group

Assigns a role to a group.

Parameters:
  • role_name (string) –
Status Codes:
DELETE /1.6/roles/{role_name}/group/{group_name}

Dissociates a role from a group.

Parameters:
  • role_name (string) –
  • group_name (string) –
Query Parameters:
 
  • context (string) –
Status Codes: