{ "opencollection": "1.0.0", "info": { "name": "Netography (Vectra Fusion) Analytics Users API", "version": "1.0" }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List Users", "type": "http" }, "http": { "method": "GET", "url": "https://api.netography.com/api/v1/users" }, "docs": "Return a list of all Users." }, { "info": { "name": "Create User", "type": "http" }, "http": { "method": "POST", "url": "https://api.netography.com/api/v1/user", "body": { "type": "json", "data": "{}" } }, "docs": "Create a User from the supplied object. Do NOT submit an ID. IDs are auto generated and immutable.
Note: This API is rate limited to 50 requests per 300 seconds." }, { "info": { "name": "Get User", "type": "http" }, "http": { "method": "GET", "url": "https://api.netography.com/api/v1/user/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "String ID of the user to get" } ] }, "docs": "Fetches a specific User from the ID supplied in the path." }, { "info": { "name": "Update User", "type": "http" }, "http": { "method": "PUT", "url": "https://api.netography.com/api/v1/user/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the User to be updated" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a User given the provided object. This does not do a diff. You must send the complete object." }, { "info": { "name": "Delete User", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.netography.com/api/v1/user/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The ID of the User to be retrieved" } ] }, "docs": "Deletes the User." } ] } ], "bundled": true }