{ "opencollection": "1.0.0", "info": { "name": "Feathery REST Account End Users API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "End Users", "type": "folder" }, "items": [ { "info": { "name": "List all users", "type": "http" }, "http": { "method": "GET", "url": "https://api.feathery.io/api/user/", "params": [ { "name": "page_size", "value": "", "type": "query", "description": "Number of results per page (max 1000)" }, { "name": "page", "value": "", "type": "query", "description": "Page number" }, { "name": "created_after", "value": "", "type": "query", "description": "Filter by creation date (after)" }, { "name": "created_before", "value": "", "type": "query", "description": "Filter by creation date (before)" } ] }, "docs": "Retrieve a list of all end users." }, { "info": { "name": "Create/fetch user", "type": "http" }, "http": { "method": "POST", "url": "https://api.feathery.io/api/user/", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new user or fetch an existing user by identifier." }, { "info": { "name": "Get user data", "type": "http" }, "http": { "method": "GET", "url": "https://api.feathery.io/api/user/:user_id/", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "Unique user identifier" } ] }, "docs": "Retrieve data for a specific end user." }, { "info": { "name": "Delete user", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.feathery.io/api/user/:user_id/", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "Unique user identifier" } ] }, "docs": "Delete a specific end user." }, { "info": { "name": "Get user form session", "type": "http" }, "http": { "method": "GET", "url": "https://api.feathery.io/api/user/:user_id/form/:form_id/", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "Unique user identifier" }, { "name": "form_id", "value": "", "type": "path", "description": "Unique form identifier" } ] }, "docs": "Retrieve the form session data for a specific user and form combination." } ] } ], "bundled": true }