{ "opencollection": "1.0.0", "info": { "name": "Trigger.dev Management Batches Environment Variables API", "version": "3.1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Environment Variables", "type": "folder" }, "items": [ { "info": { "name": "List Environment Variables", "type": "http" }, "http": { "method": "GET", "url": "https://api.trigger.dev/api/v1/envvars" }, "docs": "Returns all environment variables for the project/environment." }, { "info": { "name": "Create Environment Variable", "type": "http" }, "http": { "method": "POST", "url": "https://api.trigger.dev/api/v1/envvars", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new environment variable." }, { "info": { "name": "Import Environment Variables", "type": "http" }, "http": { "method": "POST", "url": "https://api.trigger.dev/api/v1/envvars/import", "body": { "type": "json", "data": "{}" } }, "docs": "Import multiple environment variables at once." }, { "info": { "name": "Retrieve Environment Variable", "type": "http" }, "http": { "method": "GET", "url": "https://api.trigger.dev/api/v1/envvars/:name", "params": [ { "name": "name", "value": "", "type": "path", "description": "Variable name" } ] }, "docs": "Get the value of a specific environment variable." }, { "info": { "name": "Update Environment Variable", "type": "http" }, "http": { "method": "PUT", "url": "https://api.trigger.dev/api/v1/envvars/:name", "params": [ { "name": "name", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the value of an environment variable." }, { "info": { "name": "Delete Environment Variable", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.trigger.dev/api/v1/envvars/:name", "params": [ { "name": "name", "value": "", "type": "path" } ] }, "docs": "Delete an environment variable from the project." } ] } ], "bundled": true }