v1

latestOpenAPI 3.0.3MIT2026-07-1411163326.7 KB
Context

List environment variables

List information about environment variables in a context, not including their values.

get/context/{context_id}/environment-variable

Path parameters

context_idstring uuid required

An opaque identifier of a context.

Query parameters

page-tokenstring

A token to specify which page of results to fetch.

Response

A paginated list of environment variables

next_page_tokenstring nullable required

A token to pass as a page-token query parameter to return the next page of results.

Example response

{
  "items": [
    {
      "variable": "POSTGRES_USER",
      "created_at": "2015-09-21T17:29:21.042Z",
      "updated_at": "2015-09-21T17:29:21.042Z"
    }
  ]
}