{ "opencollection": "1.0.0", "info": { "name": "CyCognito API V1 Reference Assets Users API", "version": "0.0.1" }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "Get all user data", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/users", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Get user data for all users registered in your CyCognito account." }, { "info": { "name": "Create user", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/v1/users", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Create a new user." }, { "info": { "name": "Get individual user data", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/v1/users/:email", "params": [ { "name": "email", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Get user data for the specified individual user." }, { "info": { "name": "Edit single user teams or roles", "type": "http" }, "http": { "method": "PUT", "url": "{{baseUrl}}/v1/users/:email", "params": [ { "name": "email", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Edit single teams or roles for the specified user." }, { "info": { "name": "Delete user", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/v1/users/:email", "params": [ { "name": "email", "value": "", "type": "path", "description": "The email of the user who you want to remove from the current team associated with your API key." } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Remove a CyCognito user from the current team associated with your API key." } ] } ], "bundled": true }