List zone environments
client.zones.environments.list(EnvironmentListParams { zone_id } params, RequestOptionsoptions?): EnvironmentListResponse { environments }
GET/zones/{zone_id}/environments
List zone environments
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
List zone environments
import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted
});
const environments = await client.zones.environments.list({ zone_id: 'zone_id' });
console.log(environments.environments);{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"result": {
"environments": [
{
"expression": "expression",
"locked_on_deployment": true,
"name": "name",
"position": {
"after": "yyy",
"before": "xxx"
},
"ref": "ref",
"version": 0,
"http_application_id": "http_application_id"
}
]
},
"success": true
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"result": {
"environments": [
{
"expression": "expression",
"locked_on_deployment": true,
"name": "name",
"position": {
"after": "yyy",
"before": "xxx"
},
"ref": "ref",
"version": 0,
"http_application_id": "http_application_id"
}
]
},
"success": true
}