{ "opencollection": "1.0.0", "info": { "name": "Light Authorization v1 - Users API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "v1 - Users", "type": "folder" }, "items": [ { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/users", "params": [ { "name": "sort", "value": "", "type": "query" }, { "name": "filter", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query", "description": "Number of items to skip before starting to collect the result set. Deprecated, use 'cursor' instead." }, { "name": "cursor", "value": "", "type": "query", "description": "The cursor position to start returning results from.\nTo opt-in into cursor-based pagination, provide `0` for the initial request.\nFor subsequent requests, use `nextCursor` and `prevCursor` from the previous response to navigate.\nCursor values are opaque and should not be constructed manually." }, { "name": "includeRoles", "value": "", "type": "query" }, { "name": "includeGroups", "value": "", "type": "query" }, { "name": "includeManagers", "value": "", "type": "query" } ] }, "docs": "Returns a paginated list of users" }, { "info": { "name": "Create user", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/users", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new user" }, { "info": { "name": "Get latest reimbursement", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/users/:userId/reimbursements/latest", "params": [ { "name": "userId", "value": "", "type": "path" } ] }, "docs": "Returns the most recent reimbursement for a user" }, { "info": { "name": "Get reimbursement config", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/users/:userId/reimbursement-config", "params": [ { "name": "userId", "value": "", "type": "path" } ] }, "docs": "Returns the reimbursement configuration for a user" }, { "info": { "name": "Update reimbursement config", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/v1/users/:userId/reimbursement-config", "params": [ { "name": "userId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates or updates the reimbursement configuration for a user" }, { "info": { "name": "Update user", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/v1/users/:userId", "params": [ { "name": "userId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the given user" }, { "info": { "name": "Update user status", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/v1/users/:userId/status", "params": [ { "name": "userId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the given user's status" } ] } ], "bundled": true }