Deploy
List Environments
Allows listing environments for a given organization ID.
get/deploy/environments
Query parameters
org-idstring uuid required
An opaque identifier of an organization used in query parameters.
page-sizeinteger required
The number of results per page.
page-tokenstring
A token to specify which page of results to fetch.
Response
Paginated environments list
Example response
{
"items": [
{
"description": "some description",
"id": "123e4127-e89b-12d3-a456-426123417400",
"labels": [
{
"key": "env",
"value": "prod"
}
],
"name": "prod-app"
}
]
}