List deployments

List deployments. Optionally filter by application name and version.

GET/deployments

List deployments. Optionally filter by application name and version.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

app_name?string

Filter results by application name.

app_version?string

Filter results by application version. Requires app_name to be set.

limit?integer

Limit the number of deployments to return.

Range1 <= value <= 100
Default20
offset?integer

Offset the number of deployments to return.

Range0 <= value
Default0
query?string

Search deployments by ID or app name.

Response

application/json

List of deployments.

[index: integer]?

Deployment record information.

curl -X GET "https://example.com/deployments"
[  {    "id": "string",    "status": "queued",    "status_reason": "string",    "region": "aws.us-east-1a",    "entrypoint_rel_path": "string",    "env_vars": {      "property1": "string",      "property2": "string"    },    "created_at": "2019-08-24T14:15:22Z",    "updated_at": "2019-08-24T14:15:22Z",    "source_type": "file",    "source_url": "string",    "source_ref": "string",    "source_path": "string",    "source_checksum": "string"  }]