{ "opencollection": "1.0.0", "info": { "name": "Luminary Documents Users API", "version": "1.0.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://auth.withluminary.com/oauth2/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List all users", "type": "http" }, "http": { "method": "GET", "url": "https://{subdomain}.withluminary.com/api/public/v1/users", "params": [ { "name": "after", "value": "", "type": "query", "description": "Cursor for forward pagination. Returns items after this cursor." }, { "name": "before", "value": "", "type": "query", "description": "Cursor for backward pagination. Returns items before this cursor." }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of items to return" } ] }, "docs": "Retrieve a paginated list of users using cursor-based pagination" }, { "info": { "name": "Get a user by ID", "type": "http" }, "http": { "method": "GET", "url": "https://{subdomain}.withluminary.com/api/public/v1/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User ID" } ] }, "docs": "Retrieve detailed information about a specific user" } ] } ], "bundled": true }