Find a Snyk Cloud Environment ID
Certain actions in Snyk Cloud, such as updating or deleting an environment using the Snyk API, require the environment ID.
To find the ID of a Snyk Cloud Environment, you can use the following methods:
- 1.Navigate to your Organization's Settings > Cloud environments.
- 2.In the Actions column, select the
...
icon for the desired environment. - 3.Select Update.Update an environment from the Cloud environments page in Settings
- 4.In the Environment ID section, select Copy to copy the environment ID.Copy the Snyk Cloud Environment ID
To find a Snyk Cloud Environment ID using the API, send a request to the
/cloud/environments
endpoint in the below format:curl -X GET \
'https://api.snyk.io/rest/orgs/YOUR-ORGANIZATION-ID/cloud/environments?version=2022-12-21~beta' \
-H 'Authorization: token YOUR-API-TOKEN'
In the output, look for the
data.id
property of the desired environment. In the shortened example below, the ID is 3b7ccff9-8900-4e54-0000-1234abcd1234
:{
"jsonapi": {
"version": "1.0"
},
"data": {
"id": "3b7ccff9-8900-4e54-0000-1234abcd1234",
<trimmed for length>
}
}
You can filter the list of environments using query parameters to make it easier to find a particular environment. For example, you can add
kind=google
to the API request to return only Google environments:curl -X GET \
'https://api.snyk.io/rest/orgs/YOUR-ORGANIZATION-ID/cloud/environments?kind=google&version=2022-12-21~beta' \
-H 'Authorization: token YOUR-API-TOKEN'
Last modified 1mo ago