{ "opencollection": "1.0.0", "info": { "name": "Windmill Apps Variables API", "version": "1.745.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Variables", "type": "folder" }, "items": [ { "info": { "name": "List variables", "type": "http" }, "http": { "method": "GET", "url": "https://app.windmill.dev/api/w/:workspace/variables/list", "params": [ { "name": "workspace", "value": "", "type": "path", "description": "The workspace id (tenant) the resource belongs to." } ] }, "docs": "Lists workspace variables (secret values are redacted)." }, { "info": { "name": "Create a variable", "type": "http" }, "http": { "method": "POST", "url": "https://app.windmill.dev/api/w/:workspace/variables/create", "params": [ { "name": "workspace", "value": "", "type": "path", "description": "The workspace id (tenant) the resource belongs to." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a workspace variable or secret." }, { "info": { "name": "Get a variable", "type": "http" }, "http": { "method": "GET", "url": "https://app.windmill.dev/api/w/:workspace/variables/get/:path", "params": [ { "name": "workspace", "value": "", "type": "path", "description": "The workspace id (tenant) the resource belongs to." }, { "name": "path", "value": "", "type": "path", "description": "The runnable/resource path (e.g. u/username/my_script or f/folder/name)." } ] }, "docs": "Retrieves a variable by path, optionally decrypting the secret value." }, { "info": { "name": "Delete a variable", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.windmill.dev/api/w/:workspace/variables/delete/:path", "params": [ { "name": "workspace", "value": "", "type": "path", "description": "The workspace id (tenant) the resource belongs to." }, { "name": "path", "value": "", "type": "path", "description": "The runnable/resource path (e.g. u/username/my_script or f/folder/name)." } ] }, "docs": "Deletes a variable by path." } ] } ], "bundled": true }