{ "opencollection": "1.0.0", "info": { "name": "ProcessMaker Platform RESTful Environment Variables API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Environment Variables", "type": "folder" }, "items": [ { "info": { "name": "Returns all environment variables", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.processmaker.net/api/1.0/environment-variables", "params": [ { "name": "filter", "value": "", "type": "query", "description": "Filter results by string. Searches Name, Description, and Status. Status must match exactly. Others can be a substring.\n" }, { "name": "order_by", "value": "", "type": "query", "description": "Field to order results by" }, { "name": "order_direction", "value": "", "type": "query" }, { "name": "per_page", "value": "", "type": "query" } ] }, "docs": "Returns all environment variables" }, { "info": { "name": "Save a new environment variable", "type": "http" }, "http": { "method": "POST", "url": "https://{organization}.processmaker.net/api/1.0/environment-variables", "body": { "type": "json", "data": "{}" } }, "docs": "Save a new environment variable" }, { "info": { "name": "Get a single environment variable", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.processmaker.net/api/1.0/environment-variables/:environment_variable_id", "params": [ { "name": "environment_variable_id", "value": "", "type": "path" } ] }, "docs": "Get a single environment variable" }, { "info": { "name": "Update an environment variable", "type": "http" }, "http": { "method": "PUT", "url": "https://{organization}.processmaker.net/api/1.0/environment-variables/:environment_variable_id", "params": [ { "name": "environment_variable_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an environment variable" }, { "info": { "name": "Delete an environment variable", "type": "http" }, "http": { "method": "DELETE", "url": "https://{organization}.processmaker.net/api/1.0/environment-variables/:environment_variable_id", "params": [ { "name": "environment_variable_id", "value": "", "type": "path" } ] }, "docs": "Delete an environment variable" } ] } ], "bundled": true }