{"id":16598,"date":"2024-11-05T09:59:44","date_gmt":"2024-11-05T09:59:44","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16598"},"modified":"2024-11-05T11:09:51","modified_gmt":"2024-11-05T11:09:51","password":"","slug":"how-to-use-scp-for-secure-file-transfers-between-linux-servers","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/","title":{"rendered":"How to Use SCP for Secure File Transfers Between Linux Servers"},"content":{"rendered":"\n<p>If you manage a live server or a home server, transferring files between machines\u2014whether local or remote\u2014is often essential. While there are several ways to do this, one of the simplest and most secure methods is using the <code>scp<\/code> (secure copy) command. Unlike FTP, SCP encrypts your files and credentials during transfer, ensuring privacy and security without needing to log in to the remote machine.<\/p>\n\n\n\n<p>Since SCP relies on SSH (Secure Shell), you only need the SSH credentials for the source and destination servers. In addition to transferring files between local and remote machines, SCP also allows transferring files directly between two remote servers from your local machine. Let\u2019s walk through some common use cases and commands.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SSH access to the Linux server with the user that you want to copy files with (e.g root)<\/li>\n\n\n\n<li>SSH password for the user &#8211; the SCP command will ask you to input a password.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Basics of the SCP Command<\/h3>\n\n\n\n<p>The basic syntax for copying a file from your local machine to a remote server is:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp localmachine\/path_to_the_file username@server_ip:\/path_to_remote_directory<\/strong><\/code><\/pre>\n\n\n\n<p>Here, replace;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li> <code>username<\/code> with your remote server\u2019s username (e.g root or any other user)<\/li>\n\n\n\n<li><code>10.0.0.75<\/code> with the server\u2019s IP, or hostname <\/li>\n\n\n\n<li><code>\/remote\/directory<\/code> with your desired directory on the server. e.g \/home\/. The directory should be existing on the demote server<\/li>\n<\/ul>\n\n\n\n<p>For example, to copy a file called <code>flameshot.rpm<\/code> located on my laptop in my current working directory to a Linux server with hostname <em>cp.tke.co.ke<\/em> in a directory \/root\/dbbackup, I will do as below;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp flameshot.rpm root@cp.tke.co.ke:\/root\/dbbackup<\/strong><\/code><\/pre>\n\n\n\n<p>If your Linux server uses a custom SSH port, other than port 22, you will need to specify the port using the -P flag, as below<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -P 2222 flameshot.rpm root@cp.tke.co.ke:\/root\/dbbackup<\/strong><\/code><\/pre>\n\n\n\n<p>In the above command, note that <strong>P<\/strong> is uppercase and 2222 is to be replaced with your own custom port.<\/p>\n\n\n\n<p>You will then be prompted to input the user&#8217;s SSH password. <\/p>\n\n\n\n<p>Put the password and hit Enter. As it is with SSH platforms, you will not see the password being typed. Ensure to type it in accurately then hit Enter to copy the file<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"133\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-1024x133.png\" alt=\"\" class=\"wp-image-16612\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-1024x133.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-300x39.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-768x99.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52.png 1235w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Copying a Single File to a Remote Server<\/h3>\n\n\n\n<p>To copy a single file from your local machine to a remote server, use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp \/path\/to\/local_file username@server_ip:\/path_to_remote_directory<\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Copying a Directory to a Remote Server<\/h3>\n\n\n\n<p>To transfer an entire directory, include the <code>-r<\/code> flag for recursive copying:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -r \/local\/path\/to\/directory username@server_ip:\/path_to_remote_directory\/<\/strong><\/code><\/pre>\n\n\n\n<p>If you use a custom port, you will have it in the format below. The command below copied a folder called Downloads from my current working directory to a remote server in a directory \/root\/dbbackup.<\/p>\n\n\n\n<p>Again replace 2222 with your own port.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -P 2222 -r Downloads root@cp.tke.co.ke:\/root\/dbbackup<\/strong><\/code><\/pre>\n\n\n\n<p><em><strong>Note:<\/strong><\/em> Ensure that your source path doesn\u2019t end with a forward slash (<code>\/<\/code>), while the destination path must end with one.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"92\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-53-1024x92.png\" alt=\"\" class=\"wp-image-16613\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-53-1024x92.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-53-300x27.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-53-768x69.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-53.png 1252w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Copy All Files in a Local Directory to a Remote Directory<\/h3>\n\n\n\n<p>If you only want to copy all files within a directory without transferring the directory itself, add a <code>\/*<\/code> after the source directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -r \/local\/path\/to\/directory\/* username@server_ip:\/path_to_remote_directory\/<\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Copying Files from a Remote Server to Your Local Machine<\/h3>\n\n\n\n<p>You can also copy files in reverse\u2014from a remote server to your local machine. The syntax is similar:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp username@server_ip:\/path_to_remote_file \/local\/path\/to\/destination<\/strong><\/code><\/pre>\n\n\n\n<p>To copy an entire directory from the remote server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -r username@server_ip:\/path_to_remote_directory \/local\/path\/to\/destination\/<\/strong><\/code><\/pre>\n\n\n\n<p>Below, I want to copy a directory called <strong>Downloads<\/strong> from <strong>\/root\/dbbackup\/Downloads<\/strong> on the remote server to my local machine, this path <strong>\/home\/tke\/utilityFiles<\/strong>\/<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"142\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-54-1024x142.png\" alt=\"\" class=\"wp-image-16616\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-54-1024x142.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-54-300x42.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-54-768x107.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-54.png 1253w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Copy Files Between Directories on the Same Server from Your Local Machine<\/h3>\n\n\n\n<p>With SCP, you can transfer files between directories on the same server directly from your local machine. <\/p>\n\n\n\n<p>Note that here, you are on your local machine but you are copying files between remote directories without SSHing to the remote server.<\/p>\n\n\n\n<p> This can save time compared to logging in via SSH:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp username@server_ip:\/source_directory\/file username@server_ip:\/destination_directory\/<\/strong><\/code><\/pre>\n\n\n\n<p>For copying an entire directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -r username@server_ip:\/source_directory username@server_ip:\/destination_directory\/<\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Copy Files Between Two Remote Servers from Your Local Machine<\/h3>\n\n\n\n<p>Another great feature of SCP is the ability to move files between two remote servers from your local machine without needing to log in to either server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp username@server1_ip:\/path_to_file username@server2_ip:\/destination_path<\/strong><\/code><\/pre>\n\n\n\n<p>For copying an entire directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><strong>scp -r username@server1_ip:\/source_directory username@server2_ip:\/destination_directory<\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>With SCP, securely transferring files between servers or directories is straightforward and highly efficient. Mastering this simple command opens up powerful capabilities for managing files across servers. Now that you&#8217;ve got the basics down, you&#8217;re ready to make your Linux file transfers secure and efficient. Happy transferring!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you manage a live server or a home server, transferring files between machines\u2014whether local or remote\u2014is often essential. While there are several ways to do this, one of the simplest and most secure methods is using the scp (secure copy) command. Unlike FTP, SCP encrypts your files and credentials during transfer, ensuring privacy and [&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-16598","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":861,"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>How to Use SCP for Secure File Transfers Between Linux Servers -<\/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\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use SCP for Secure File Transfers Between Linux Servers -\" \/>\n<meta property=\"og:description\" content=\"If you manage a live server or a home server, transferring files between machines\u2014whether local or remote\u2014is often essential. While there are several ways to do this, one of the simplest and most secure methods is using the scp (secure copy) command. Unlike FTP, SCP encrypts your files and credentials during transfer, ensuring privacy and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-05T11:09:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-1024x133.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\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/\",\"name\":\"How to Use SCP for Secure File Transfers Between Linux Servers -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-52-1024x133.png\",\"datePublished\":\"2024-11-05T09:59:44+00:00\",\"dateModified\":\"2024-11-05T11:09:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-52-1024x133.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/image-52-1024x133.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use SCP for Secure File Transfers Between Linux Servers\"}]},{\"@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":"How to Use SCP for Secure File Transfers Between Linux Servers -","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\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/","og_locale":"en_US","og_type":"article","og_title":"How to Use SCP for Secure File Transfers Between Linux Servers -","og_description":"If you manage a live server or a home server, transferring files between machines\u2014whether local or remote\u2014is often essential. While there are several ways to do this, one of the simplest and most secure methods is using the scp (secure copy) command. Unlike FTP, SCP encrypts your files and credentials during transfer, ensuring privacy and [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/","article_modified_time":"2024-11-05T11:09:51+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-1024x133.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\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/","name":"How to Use SCP for Secure File Transfers Between Linux Servers -","isPartOf":{"@id":"https:\/\/truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-1024x133.png","datePublished":"2024-11-05T09:59:44+00:00","dateModified":"2024-11-05T11:09:51+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-1024x133.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/11\/image-52-1024x133.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-use-scp-for-secure-file-transfers-between-linux-servers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Use SCP for Secure File Transfers Between Linux Servers"}]},{"@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\/16598","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=16598"}],"version-history":[{"count":11,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16598\/revisions"}],"predecessor-version":[{"id":16619,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16598\/revisions\/16619"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16598"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16598"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}