Get All Environment Variables
Endpoint: GET /api/environment
Retrieves all environment variables from your Conductor cluster.
Response
Returns an array of objects containing all environment variables with their names and values.
Examples
Get all environment variables
Request
curl -X 'GET' \
'https://<YOUR-SERVER-URL>/api/environment' \
-H 'accept: application/json' \
-H 'X-Authorization: <TOKEN>'
Response
[
{
"name": "uri-for-http-task-testing-env",
"value": "https://xyz.com/api"
},
{
"name": "url",
"value": "{ \"baseUrl\": \"https://orkes-api-tester.orkesconductor.com/api\", \"timeout\": 5000 }"
},
{
"name": "sampleKey",
"value": "sampleValue"
}
]