Skip to content

REST: Environments related API

bugzmanov edited this page Aug 1, 2012 · 29 revisions

Environments related API

List existing environments

Path: /rest/projects/(projectId)/envs
Type: GET
Path parameters

Parameter Type Description
projectId Number project id of the project envs belong to

Request parameters

Parameter Type Mandatory Description
filter String N Sets filter's values. Currently possible filtering on the status of the environment.

Example: filter=statuses[Destroyed,Broken]

Example results

[
    {
        "name":"test",
        "status":"Ready",
        "creator":"genesis",
        "templateName":"ErlangAmazon",
        "templateVersion":"0.1"
    }
]
Clone this wiki locally