{ "opencollection": "1.0.0", "info": { "name": "n8n Public Audit User API", "version": "1.1.1" }, "request": { "auth": { "type": "apikey", "key": "X-N8N-API-KEY", "value": "{{X-N8N-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "User", "type": "folder" }, "items": [ { "info": { "name": "Retrieve all users", "type": "http" }, "http": { "method": "GET", "url": "https://app.n8n.cloud/api/v1/users", "params": [ { "name": "limit", "value": "", "type": "query" }, { "name": "cursor", "value": "", "type": "query" }, { "name": "includeRole", "value": "", "type": "query" }, { "name": "projectId", "value": "", "type": "query" } ] }, "docs": "Retrieve all users" }, { "info": { "name": "Create multiple users", "type": "http" }, "http": { "method": "POST", "url": "https://app.n8n.cloud/api/v1/users" }, "docs": "Create multiple users" }, { "info": { "name": "Get user by ID/Email", "type": "http" }, "http": { "method": "GET", "url": "https://app.n8n.cloud/api/v1/users/:id", "params": [ { "name": "id", "value": "", "type": "path" }, { "name": "includeRole", "value": "", "type": "query" } ] }, "docs": "Get user by ID/Email" }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.n8n.cloud/api/v1/users/:id", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Delete a user" }, { "info": { "name": "Change a user's global role", "type": "http" }, "http": { "method": "PATCH", "url": "https://app.n8n.cloud/api/v1/users/:id/role", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Change a user's global role" } ] } ], "bundled": true }