{"id":15072,"date":"2026-01-28T10:51:27","date_gmt":"2026-01-28T10:51:27","guid":{"rendered":"https:\/\/www.bodhost.com\/kb\/?p=15072"},"modified":"2026-02-26T14:02:05","modified_gmt":"2026-02-26T14:02:05","slug":"how-to-add-and-delete-users-on-ubuntu-24-04","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/","title":{"rendered":"How to Add and Delete Users on Ubuntu 24.04"},"content":{"rendered":"<p>Managing users is one of the most essential tasks in Ubuntu system administration. Whether you\u2019re setting up a shared server or organizing access for different team members, understanding how to create and remove user accounts helps maintain a secure and well\u2011structured environment. Ubuntu 24.04 provides both command\u2011line and graphical ways to manage users, allowing you to choose whichever method suits your workflow best.<\/p>\n<p>This guide walks you through adding new users, assigning passwords, verifying accounts, and removing users safely.<\/p>\n<div style=\"border: 2px solid #0078ff; border-radius: 10px; padding: 20px; margin: 30px 0; background: #f9fbff; font-family: Arial,sans-serif; box-shadow: 0 3px 8px rgba(0,0,0,0.05);\">\n<h2 style=\"font-size: 20px; color: #2b3a55; border-bottom: 2px solid #0078ff; display: inline-block; padding-bottom: 5px; margin-bottom: 15px;\">Table of Contents<\/h2>\n<ol style=\"margin: 0; padding-left: 20px; line-height: 1.8;\">\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#understanding-user-management-ubuntu-2404\">Understanding User Management in Ubuntu 24.04<\/a><\/li>\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#add-user-ubuntu-2404\">How to Add a User in Ubuntu 24.04<\/a>\n<ol>\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#add-user-useradd\">Adding a User with useradd<\/a><\/li>\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#add-user-system-settings\">Adding a User Through System Settings<\/a><\/li>\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#add-user-to-group\">Adding a User to a Group<\/a><\/li>\n<\/ol>\n<\/li>\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#delete-user-ubuntu-2404\">How to Delete a User in Ubuntu 24.04<\/a>\n<ol>\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#delete-user-deluser\">Deleting a User with deluser<\/a><\/li>\n<li><a style=\"color: #0078ff; text-decoration: none;\" href=\"#delete-user-system-settings\">Deleting a User Through System Settings<\/a><\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<\/div>\n<h3 id=\"understanding-user-management-ubuntu-2404\"><strong>Understanding User Management in Ubuntu 24.04<\/strong><\/h3>\n<p>Ubuntu systems typically work with two types of users:<\/p>\n<ul>\n<li>Administrative (sudo) users, who can run privileged commands.<\/li>\n<li>Standard users, who have limited permissions.<\/li>\n<\/ul>\n<p>Creating separate user accounts ensures each person gets only the level of access they need. It also helps maintain system integrity by preventing unauthorized system\u2011wide changes.<\/p>\n<h3 id=\"add-user-ubuntu-2404\"><strong>How to Add a User in Ubuntu 24.04<\/strong><\/h3>\n<p>Ubuntu allows you to add users either through the <a href=\"https:\/\/www.bodhost.com\/kb\/how-to-check-your-ubuntu-version-using-the-command-line\/\" target=\"_blank\" rel=\"noopener\">command line<\/a> or through the system&#8217;s user settings. The command\u2011line method offers more control and is commonly used by server administrators.<\/p>\n<h4 id=\"add-user-useradd\"><strong>1. Adding a User with useradd<\/strong><\/h4>\n<p>The useradd tool is a low\u2011level command that lets you create users with specific parameters.<\/p>\n<p>To create a new user with a home directory:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">sudo useradd -m &lt;username&gt;<\/span><\/span><\/p>\n<p>The -m option ensures Ubuntu creates a home directory for the user. If you don\u2019t specify options, Ubuntu applies system defaults stored in \/etc\/default\/useradd.<\/p>\n<p>Next, assign a password:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">sudo passwd &lt;username&gt;<\/span><\/span><\/p>\n<p>Ubuntu will warn you if the password is weak, so be sure to choose a secure one.<\/p>\n<p>You can confirm the user\u2019s existence by listing all system users:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">awk -F&#8217;:&#8217; &#8216;{ print $1 }&#8217; \/etc\/passwd<\/span><\/span><\/p>\n<p>You can also set the password during creation:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">sudo useradd -m &lt;username&gt; -p &lt;password&gt;<\/span><\/span><\/p>\n<p>After creation, log in as the user and run:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">whoami<\/span><\/span><\/p>\n<p>to confirm that everything is set up correctly.<\/p>\n<h4 id=\"add-user-system-settings\"><strong>2. Adding a User Through System Settings<\/strong><\/h4>\n<p>On desktop versions of Ubuntu 24.04, you can use the graphical user interface:<\/p>\n<ol>\n<li>Open Settings.<\/li>\n<li>Navigate to Users.<\/li>\n<li>Unlock the panel using your administrator password.<\/li>\n<li>Click Add User and fill in the details.<\/li>\n<\/ol>\n<p>This method is helpful if you prefer a non\u2011command\u2011line workflow<\/p>\n<h4 id=\"add-user-to-group\"><strong>3. Adding a User to a Group<\/strong><\/h4>\n<p>User groups help define what a user can and cannot do. For example, adding a user to the sudo group grants them administrative privileges.<\/p>\n<p>To add a user to a group:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">sudo usermod -aG &lt;group-name&gt; &lt;usernam&gt;<\/span><\/span><\/p>\n<p>For granting sudo access:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">sudo usermod -aG sudo &lt;username&gt;<\/span><\/span><\/p>\n<p>The -aG option ensures the user is added to the group without being removed from existing ones.<\/p>\n<h3 id=\"delete-user-ubuntu-2404\"><strong>How to Delete a User in Ubuntu 24.04<\/strong><\/h3>\n<p>When someone no longer needs access to the system, removing their user account keeps the environment clean and secure. Ubuntu offers both command\u2011line and system\u2011setting options for account deletion.<\/p>\n<h4 id=\"delete-user-deluser\"><strong>1. Deleting a User with deluser<\/strong><\/h4>\n<p>To delete a user account:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">sudo deluser &lt;username&gt;<\/span><\/span><\/p>\n<p>This removes the account but keeps the user\u2019s home directory. If you want to remove their home directory as well:<\/p>\n<p><span style=\"text-decoration: underline;\"><span style=\"color: #3366ff; text-decoration: underline;\">sudo deluser &#8211;remove-home &lt;username&gt;<\/span><\/span><\/p>\n<h4 id=\"delete-user-system-settings\"><strong>2. Deleting a User Through System Settings<\/strong><\/h4>\n<p>If you\u2019re using Ubuntu Desktop:<\/p>\n<ol>\n<li>Open Settings.<\/li>\n<li>Go to Users.<\/li>\n<li>Unlock the panel.<\/li>\n<li>Select the user.<\/li>\n<li>Click Remove User.<\/li>\n<\/ol>\n<p>This option is simple but suited for workstation environments.<\/p>\n<p><strong>Additional Notes<\/strong><\/p>\n<ul>\n<li>Always verify user actions after creation or deletion to ensure the system reflects the changes properly.<\/li>\n<li>Keep user permissions organized, and grant administrative rights only when necessary.<\/li>\n<li>Use strong passwords to maintain system security.<\/li>\n<\/ul>\n<p>Managing users in Ubuntu 24.04 is straightforward once you understand the available tools. Whether you&#8217;re using useradd and deluser for precise control or the GUI for convenience, Ubuntu makes it easy to add and remove accounts according to your needs. Keeping your user list organized helps maintain a secure, efficient system that\u2019s easy to manage over time.<\/p>\n<p>If you need more advanced configurations, such as modifying user permissions, managing SSH access, or automating account creation, Ubuntu provides flexible tools to support deeper customization.<\/p>\n<p>Click here to learn <a href=\"https:\/\/www.bodhost.com\/kb\/how-to-create-a-folder-in-ubuntu-24-04\/\" target=\"_blank\" rel=\"noopener\"><em>how to create and manage folders in Ubuntu 24.04<\/em><\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Managing users is one of the most essential tasks in Ubuntu system administration. Whether you\u2019re setting up a shared server or organizing access for different team members, understanding how to&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1559],"tags":[1686],"class_list":["post-15072","post","type-post","status-publish","format-standard","hentry","category-ubuntu","tag-add-and-delete-users-on-ubuntu-24-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Add and Delete Users on Ubuntu 24.04<\/title>\n<meta name=\"description\" content=\"Manage Ubuntu 24.04 users: Learn to add accounts, grant sudo access, and delete users or home directories via the terminal in this quick.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add and Delete Users on Ubuntu 24.04\" \/>\n<meta property=\"og:description\" content=\"Manage Ubuntu 24.04 users: Learn to add accounts, grant sudo access, and delete users or home directories via the terminal in this quick.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-28T10:51:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T14:02:05+00:00\" \/>\n<meta name=\"author\" content=\"Paul Lopez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Lopez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/\"},\"author\":{\"name\":\"Paul Lopez\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\"},\"headline\":\"How to Add and Delete Users on Ubuntu 24.04\",\"datePublished\":\"2026-01-28T10:51:27+00:00\",\"dateModified\":\"2026-02-26T14:02:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/\"},\"wordCount\":746,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"keywords\":[\"Add and Delete Users on Ubuntu 24.04\"],\"articleSection\":[\"Ubuntu\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/\",\"name\":\"How to Add and Delete Users on Ubuntu 24.04\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2026-01-28T10:51:27+00:00\",\"dateModified\":\"2026-02-26T14:02:05+00:00\",\"description\":\"Manage Ubuntu 24.04 users: Learn to add accounts, grant sudo access, and delete users or home directories via the terminal in this quick.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-add-and-delete-users-on-ubuntu-24-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Ubuntu\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/ubuntu\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add and Delete Users on Ubuntu 24.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\",\"name\":\"Paul Lopez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"caption\":\"Paul Lopez\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/paullopez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Add and Delete Users on Ubuntu 24.04","description":"Manage Ubuntu 24.04 users: Learn to add accounts, grant sudo access, and delete users or home directories via the terminal in this quick.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Add and Delete Users on Ubuntu 24.04","og_description":"Manage Ubuntu 24.04 users: Learn to add accounts, grant sudo access, and delete users or home directories via the terminal in this quick.","og_url":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2026-01-28T10:51:27+00:00","article_modified_time":"2026-02-26T14:02:05+00:00","author":"Paul Lopez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Paul Lopez","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/"},"author":{"name":"Paul Lopez","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813"},"headline":"How to Add and Delete Users on Ubuntu 24.04","datePublished":"2026-01-28T10:51:27+00:00","dateModified":"2026-02-26T14:02:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/"},"wordCount":746,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"keywords":["Add and Delete Users on Ubuntu 24.04"],"articleSection":["Ubuntu"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/","url":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/","name":"How to Add and Delete Users on Ubuntu 24.04","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"datePublished":"2026-01-28T10:51:27+00:00","dateModified":"2026-02-26T14:02:05+00:00","description":"Manage Ubuntu 24.04 users: Learn to add accounts, grant sudo access, and delete users or home directories via the terminal in this quick.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/how-to-add-and-delete-users-on-ubuntu-24-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Ubuntu","item":"https:\/\/www.bodhost.com\/kb\/category\/ubuntu\/"},{"@type":"ListItem","position":2,"name":"How to Add and Delete Users on Ubuntu 24.04"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813","name":"Paul Lopez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","caption":"Paul Lopez"},"url":"https:\/\/www.bodhost.com\/kb\/author\/paullopez\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15072","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=15072"}],"version-history":[{"count":16,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15072\/revisions"}],"predecessor-version":[{"id":15088,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15072\/revisions\/15088"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=15072"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=15072"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=15072"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}