Services /
Get service environment variables
Gets information about the environment variables of the given service.
URL parameters
project
string required
ID of the project
service
string required
ID of the service
Response attributes
object
The environment variables, formatted as a JSON object.
API
CLI
GET /v1beta/projects/{project}/services/{service}/configuration/environment
Example response
200 OK
The environment variables of the service.
JSON
{
"VARIABLE_1": "abcdef",
"VARIABLE_2": "12345"
}