{ "opencollection": "1.0.0", "info": { "name": "Fastly Account ACL User API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Fastly-Key", "value": "{{Fastly-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "User", "type": "folder" }, "items": [ { "info": { "name": "Get the current user", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastly.com/current_user" }, "docs": "Retrieves the profile information for the authenticated user." }, { "info": { "name": "Get a user", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastly.com/user/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the user." } ] }, "docs": "Retrieves the profile information for a specific user." }, { "info": { "name": "Update a user", "type": "http" }, "http": { "method": "PUT", "url": "https://api.fastly.com/user/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the user." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "name", "value": "" }, { "name": "role", "value": "" } ] } }, "docs": "Updates the profile information for a specific user." }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.fastly.com/user/:user_id", "params": [ { "name": "user_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the user." } ] }, "docs": "Removes a user from the customer account." }, { "info": { "name": "List users for a customer", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastly.com/customer/:customer_id/users", "params": [ { "name": "customer_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the customer." } ] }, "docs": "Retrieves a list of all users associated with a specific customer account." }, { "info": { "name": "Create a user invitation", "type": "http" }, "http": { "method": "POST", "url": "https://api.fastly.com/invitations", "body": { "type": "json", "data": "{}" } }, "docs": "Creates an invitation to join the customer account. The invited user will receive an email with a link to accept the invitation." } ] } ], "bundled": true }