{ "opencollection": "1.0.0", "info": { "name": "Linode API v4 Account API", "version": "4.189.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Account", "type": "folder" }, "items": [ { "info": { "name": "Get account info", "type": "http" }, "http": { "method": "GET", "url": "https://api.linode.com/v4/account" }, "docs": "Returns the contact and billing information related to your account, including company name, address, phone number, and current balance." }, { "info": { "name": "Update account info", "type": "http" }, "http": { "method": "PUT", "url": "https://api.linode.com/v4/account", "body": { "type": "json", "data": "{}" } }, "docs": "Updates contact and billing information on your account." }, { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "https://api.linode.com/v4/account/users", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page number to return." }, { "name": "page_size", "value": "", "type": "query", "description": "The number of items per page." } ] }, "docs": "Returns a paginated list of users on your account, including their usernames, email addresses, and restricted status." }, { "info": { "name": "Create a user", "type": "http" }, "http": { "method": "POST", "url": "https://api.linode.com/v4/account/users", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new user on your account. The new user will receive an email to set their password." }, { "info": { "name": "Get a user", "type": "http" }, "http": { "method": "GET", "url": "https://api.linode.com/v4/account/users/:username", "params": [ { "name": "username", "value": "", "type": "path", "description": "The username of the user." } ] }, "docs": "Returns information about a single user on your account." }, { "info": { "name": "Update a user", "type": "http" }, "http": { "method": "PUT", "url": "https://api.linode.com/v4/account/users/:username", "params": [ { "name": "username", "value": "", "type": "path", "description": "The username of the user." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates information about a user on your account, including their username, email, and restricted status." }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.linode.com/v4/account/users/:username", "params": [ { "name": "username", "value": "", "type": "path", "description": "The username of the user." } ] }, "docs": "Deletes a user from your account. The deleted user will lose access to the account immediately." }, { "info": { "name": "List events", "type": "http" }, "http": { "method": "GET", "url": "https://api.linode.com/v4/account/events", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page number to return." }, { "name": "page_size", "value": "", "type": "query", "description": "The number of items per page." } ] }, "docs": "Returns a paginated list of events on your account, ordered by creation date descending. Events record actions taken on your account such as instance creation, deletion, and configuration changes." }, { "info": { "name": "Get an event", "type": "http" }, "http": { "method": "GET", "url": "https://api.linode.com/v4/account/events/:eventId", "params": [ { "name": "eventId", "value": "", "type": "path", "description": "The ID of the event." } ] }, "docs": "Returns a single event object by its ID." }, { "info": { "name": "List invoices", "type": "http" }, "http": { "method": "GET", "url": "https://api.linode.com/v4/account/invoices", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page number to return." }, { "name": "page_size", "value": "", "type": "query", "description": "The number of items per page." } ] }, "docs": "Returns a paginated list of invoices on your account." }, { "info": { "name": "List payments", "type": "http" }, "http": { "method": "GET", "url": "https://api.linode.com/v4/account/payments", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page number to return." }, { "name": "page_size", "value": "", "type": "query", "description": "The number of items per page." } ] }, "docs": "Returns a paginated list of payments made on your account." }, { "info": { "name": "Make a payment", "type": "http" }, "http": { "method": "POST", "url": "https://api.linode.com/v4/account/payments", "body": { "type": "json", "data": "{}" } }, "docs": "Makes a payment on your account using the US Dollar amount provided." } ] } ], "bundled": true }