{"id":16656,"date":"2024-11-06T10:34:18","date_gmt":"2024-11-06T10:34:18","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16656"},"modified":"2024-11-06T10:42:41","modified_gmt":"2024-11-06T10:42:41","password":"","slug":"understanding-how-to-use-the-wall-command-in-linux","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/","title":{"rendered":"Understanding how to use the wall command in Linux"},"content":{"rendered":"\n<p>The <code>wall<\/code> command in Linux is used to send broadcast messages to all logged-in users. <\/p>\n\n\n\n<p>It can be very useful for notifying users about upcoming server downtime, maintenance activities, or other urgent issues. <\/p>\n\n\n\n<p>With <code>wall<\/code>, administrators can quickly and efficiently alert users to any scheduled server events without need for additional software.<\/p>\n\n\n\n<p><strong>Note:<\/strong> <\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You may need <code>sudo<\/code> permissions to use <code>wall<\/code> on some systems, especially when sending messages to all users. This means that you will use the user root or another sudo user.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Common Options with wall Command<\/h2>\n\n\n\n<p>The Linux <code>wall<\/code> command has a few handy options you can use to tailor how it works. Here are some of the most popular ones:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-n<\/code>: Hides the banner that usually appears before the message.<\/li>\n\n\n\n<li><code>-t timeout<\/code>: Sets a time limit for the message display. It will only stay visible for the number of seconds you specify.<\/li>\n\n\n\n<li><code>-g group<\/code>: Sends the message only to users in a specific group.<\/li>\n\n\n\n<li><code>-V<\/code>: Shows the version information, then exits.<\/li>\n\n\n\n<li><code>-h<\/code>: Displays help details, then exits.<\/li>\n<\/ul>\n\n\n\n<p><strong>Examples<\/strong><\/p>\n\n\n\n<p>Below are some of the usecases<\/p>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Broadcast Simple Message<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This is the most basic use. It send a broadcast message to all users that are logged in to the server&#8217;s SSH<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>wall \"We have scheduled a transfer from this server from 6 PM.\"<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The command above will display the message  &#8220;<strong>We have schedules a transfer from this server from 6 PM<\/strong>&#8221; to all users that are logged in to the terminal.<\/li>\n\n\n\n<li>In the image below, the message is sent from user root&#8217;s terminal and it pops up on a different user&#8217;s terminal.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"521\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-1024x521.png\" alt=\"\" class=\"wp-image-16645\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-1024x521.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-300x153.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-768x390.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59.png 1186w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Broadcast Message from File<\/strong><a href=\"https:\/\/ultahost.com\/knowledge-base\/wall-command-linux\/#h-broadcast-message-from-file\"><\/a><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can also send a broadcast message from a file. This becomes helpful it you aim to reuse the same message many times. <\/li>\n\n\n\n<li>You can ctaete your file and addd your text, then run the wall command with the following syntax<\/li>\n\n\n\n<li>Replace \/path\/to with the actual path to your file and myFile.txt with the actual name of your file.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>wall \/path\/to\/myFile.txx<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"420\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-60-1024x420.png\" alt=\"\" class=\"wp-image-16648\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-60-1024x420.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-60-300x123.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-60-768x315.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-60-1536x630.png 1536w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-60.png 1928w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Using Timeout Option<\/strong><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The <code>-t<\/code> option lets you set how long the message will stay visible. The message will disappear after the specified time in seconds. For example:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>wall -t 60 \"We have scheduled a transfer from this server from 6 PM.\"<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This command will display \u201cWe have scheduled a transfer from this server from 6 PM.\u201d for 60 seconds before it automatically disappears.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Suppressing the Header<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By default, <code>wall<\/code> shows a header before your message. You can hide this header using the <code>-n<\/code> option:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>wall -n \"We have scheduled a transfer from this server from 6 PM.\"<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This command will display the message \u201cWe have scheduled a transfer from this server from 6 PM\u201d without the header.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"437\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-61-1024x437.png\" alt=\"\" class=\"wp-image-16649\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-61-1024x437.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-61-300x128.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-61-768x328.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-61.png 1381w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Send Multi line Messages<\/strong><a href=\"https:\/\/ultahost.com\/knowledge-base\/wall-command-linux\/#h-send-multi-line-messages\"><\/a><\/h5>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can also send multi-lines message using the wall command. <\/li>\n\n\n\n<li>To do that, type the command <strong><em>wall<\/em><\/strong> then press <strong>Enter<\/strong>. You will then type your message and press <strong>Enter<\/strong> after each line.<\/li>\n\n\n\n<li>Once done with the typing, press ctrl+D to send the message<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>wall\nHello there\nPlease log out of your sessions\nWe want to reboot the server.<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The above command will display the multi-line message on the terminals of all logged in users.<\/li>\n<\/ul>\n\n\n\n<h5 class=\"wp-block-heading\"><strong>Broadcast Specific Groups<\/strong><\/h5>\n\n\n\n<h5 class=\"wp-block-heading\">The -g option with he wall command allows you to send messages to users in a specific group.<\/h5>\n\n\n\n<pre class=\"wp-block-code\"><code>wall -g wheel \"We are updating the root password.\"<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The above command will display the message \u201cWe are updating the root password.\u201d only to users in the wheel group.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Best Practices<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>While the <code>wall<\/code> command is a powerful tool, it\u2019s best to use it thoughtfully to avoid unnecessary disruptions. Here are some guidelines for using the <code>wall<\/code> command effectively:\n<ul class=\"wp-block-list\">\n<li>Use <code>wall<\/code> only for important messages that all users need to see.<\/li>\n\n\n\n<li>Keep messages clear and concise to avoid confusion.<\/li>\n\n\n\n<li>Provide advance notice for any planned maintenance or shutdowns, so users have time to save their work and log out.<\/li>\n\n\n\n<li>For complex messages, test them on a single terminal first to ensure they display properly.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Author&#8217;s Final Word<\/h3>\n\n\n\n<p>The <code>wall<\/code> command is a valuable tool for system administrators in multi-user environments. It enables quick and efficient broadcasting of messages to all logged-in users. <\/p>\n\n\n\n<p>By following best practices and understanding the command\u2019s options, you can communicate important updates effectively and keep users informed.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>In case you have any other queries relates to support,the <strong>Truehost<\/strong> Support team is always available to help pout. Please reach out to them <strong><a href=\"https:\/\/wa.me\/19726743814\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a><\/strong>.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>The wall command in Linux is used to send broadcast messages to all logged-in users. It can be very useful for notifying users about upcoming server downtime, maintenance activities, or other urgent issues. With wall, administrators can quickly and efficiently alert users to any scheduled server events without need for additional software. Note: Common Options [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-16656","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-06","word_count":733,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Understanding how to use the wall command in Linux -<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding how to use the wall command in Linux -\" \/>\n<meta property=\"og:description\" content=\"The wall command in Linux is used to send broadcast messages to all logged-in users. It can be very useful for notifying users about upcoming server downtime, maintenance activities, or other urgent issues. With wall, administrators can quickly and efficiently alert users to any scheduled server events without need for additional software. Note: Common Options [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-06T10:42:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-1024x521.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/\",\"name\":\"Understanding how to use the wall command in Linux -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-59-1024x521.png\",\"datePublished\":\"2024-11-06T10:34:18+00:00\",\"dateModified\":\"2024-11-06T10:42:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-59-1024x521.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-59-1024x521.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/understanding-how-to-use-the-wall-command-in-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding how to use the wall command in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding how to use the wall command in Linux -","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:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/","og_locale":"en_US","og_type":"article","og_title":"Understanding how to use the wall command in Linux -","og_description":"The wall command in Linux is used to send broadcast messages to all logged-in users. It can be very useful for notifying users about upcoming server downtime, maintenance activities, or other urgent issues. With wall, administrators can quickly and efficiently alert users to any scheduled server events without need for additional software. Note: Common Options [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/","article_modified_time":"2024-11-06T10:42:41+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-1024x521.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/","name":"Understanding how to use the wall command in Linux -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-1024x521.png","datePublished":"2024-11-06T10:34:18+00:00","dateModified":"2024-11-06T10:42:41+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-1024x521.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-59-1024x521.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/understanding-how-to-use-the-wall-command-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"Understanding how to use the wall command in Linux"}]},{"@type":"WebSite","@id":"https:\/\/truehost.com\/support\/#website","url":"https:\/\/truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16656","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=16656"}],"version-history":[{"count":2,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16656\/revisions"}],"predecessor-version":[{"id":16663,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16656\/revisions\/16663"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16656"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16656"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16656"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}