{"id":76,"date":"2013-10-18T22:12:33","date_gmt":"2013-10-18T22:12:33","guid":{"rendered":"http:\/\/www.edrockwell.com\/blog\/?p=76"},"modified":"2026-07-02T16:57:33","modified_gmt":"2026-07-02T16:57:33","slug":"how-to-import-ad-users-from-csv-file","status":"publish","type":"post","link":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/","title":{"rendered":"How To: Import AD Users from .csv file"},"content":{"rendered":"<p>I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the time to plan a naming convention for your AD accounts. In this case, they were a type of service account for many different environments. To keep it quick, I decided to not auto-gen the passwords so I simply put them in the csv file and removed them when I was done. Well, it took me a day or so to figure out my script to create ad accounts because I had problems&#8230;<\/p>\n<p>My troubleshooting was a bit flawed but I didn&#8217;t know it until the very end (After running for all the users). I was having problems with the script ending in error <enter error here>. This is a very generic error. I knew that my accounts had spaces in them for $GivenName $Surname and $Name. So, I went through the trouble making sure that my variable properties with spaces had &#8220;&#8221; around them. Yes, that&#8217;s a pair of double quotes. My Display name I wanted to use had GivenName and Surname in it with a space. So it looks like this: Displayname = ($User.&#8221;GivenName&#8221;+&#8221; &#8220;+$User.&#8221;Surname&#8221;). The quotes around &#8220;GivenName&#8221; allowed me to use two names in the GivenName column of the .csv file and the same for &#8220;Surname&#8221;. This way I can create an account that looks like: First Second Third Forth. In other words, my &#8220;GivenName&#8221; in my CSV was First Second so I had to put &#8220;&#8221; around it in the script so it would read it as one word. What I missed is after everything was put together, the fields were over 20 characters. Well, the limit on Windows 2008 Account &#8220;Names&#8221; is 20 characters. Until I ran my script and found that it didn&#8217;t create about 1\/2 of them, I started analyzing the .csv file to figure out why it didn&#8217;t work. I found out that the ones that didn&#8217;t get created are the ones that were over 20 characters. <\/p>\n<p>Here is the script. You will notice that I&#8217;ve got a comment in the script for the .csv file&#8217;s header fields. You can add to them or remove as needed. I think it&#8217;s easier to view the powershell references on Microsoft&#8217;s site. Here is the link to Set-ADUser cmdlet: http:\/\/technet.microsoft.com\/en-us\/library\/ee617215.aspx. For each property, you need it in the script and in the .csv file. If there are special characters or spaces. Remember to use the &#8220;&#8221; around it in the script. Also, make sure you are not exceeding the field length in AD for each property. The sAMAccountName (pre-Windows 2000 logon name) is limited to 20 characters for user objects. This is what got me a few times \ud83d\ude41<\/p>\n<p>Let me know if you need anything below explained! I&#8217;ll answer all comments on this the same day if I can.<\/p>\n<pre lang=\"POWERSHELL\">\r\n# REQUIRE DA ACCOUNT  \r\nif (! ($ENV:USERNAME).ToUpper().EndsWith(\"ADM\"))\r\n{\r\n\tthrow \"SCRIPT MUST BE RUN WITH ADMIN ACCOUNT\"\r\n}\r\n\r\n# IMPORTING AD MODULE\r\nif (! @(get-module -name ActiveDirectory).count) \r\n{\r\n\timport-module ActiveDirectory\r\n}\r\n\r\n# GETTING USERS FROM CSV FILE\r\n\r\n### NOTE: The Account Column CAN NOT be more than 20 characters or it will fail on them!\r\n\r\n$Users = Import-CSV C:\\CreateADUsers.csv \r\n# columns are: GivenName,Surname,Name,Account,Password,Department,Description\r\n\r\n\r\n# CREATING USERS\r\n# If you don't have two word attributes, you can remove some of the \"\" below after the $User.\r\nforeach($User in $Users)\r\n{\r\n\t$Params = @{\r\n\t\tSamAccountName = $User.Account\r\n\t\tName = $User.\"Name\"\r\n\t\tGivenName = $User.\"GivenName\"\r\n\t\tSurname = $User.\"Surname\"\r\n\t\tDisplayname = ($User.\"GivenName\"+\" \"+$User.\"Surname\")\r\n\t\tUserPrincipalName = ($User.Account+\"@domain.com\")\r\n\t\tDepartment = $User.\"Department\"\r\n\t\tDescription = $User.\"Description\"\r\n\t\tPath = \"OU=Your OU,DC=domain,DC=com\"\r\n\t\tPasswordNeverExpires = $true\r\n\t\tAccountPassword = (ConvertTo-SecureString $User.Password -AsPlainText -Force)\r\n\t\tEnabled = $true\r\n\t}\r\n\tnew-ADUser @Params\r\n}\r\n<\/pre>\n<p>I&#8217;m a seasoned Systems Administrator with experience starting in the early 90&#8217;s when 286 computers with 20 and 30 Mhz processors running Windows 3.1 which was the newest operating system. <\/p>\n<p>&#8230;and that&#8217;s the way Ed does it \ud83d\ude42   &#8212; Thanks Scott J. for that \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[39,40,21],"class_list":["post-76","post","type-post","status-publish","format-standard","hentry","category-powershell","tag-add-aduser","tag-import-users-in-ad","tag-powershell-2"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Ed Rockwell\"\/>\n\t<meta name=\"keywords\" content=\"add-aduser,import users in ad,powershell\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"System Admin [RESOLVED] | How To: Make My DevOps Life Easier\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How To: Import AD Users from .csv file | System Admin [RESOLVED]\" \/>\n\t\t<meta property=\"og:description\" content=\"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2013-10-18T22:12:33+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-07-02T16:57:33+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How To: Import AD Users from .csv file | System Admin [RESOLVED]\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#article\",\"name\":\"How To: Import AD Users from .csv file | System Admin [RESOLVED]\",\"headline\":\"How To: Import AD Users from .csv file\",\"author\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/#organization\"},\"datePublished\":\"2013-10-18T22:12:33+00:00\",\"dateModified\":\"2026-07-02T16:57:33+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#webpage\"},\"articleSection\":\"PowerShell, Add-ADUser, import users in ad, Powershell\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/category\\\/powershell\\\/#listItem\",\"name\":\"PowerShell\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/category\\\/powershell\\\/#listItem\",\"position\":2,\"name\":\"PowerShell\",\"item\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/category\\\/powershell\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#listItem\",\"name\":\"How To: Import AD Users from .csv file\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#listItem\",\"position\":3,\"name\":\"How To: Import AD Users from .csv file\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/category\\\/powershell\\\/#listItem\",\"name\":\"PowerShell\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/#organization\",\"name\":\"System Admin [RESOLVED]\",\"description\":\"How To: Make My DevOps Life Easier\",\"url\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"Ed Rockwell\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/dea3152d7acd78aa28d280207c33f7ec516731ece9a54249cbbbebcfffc341e0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Ed Rockwell\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#webpage\",\"url\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/\",\"name\":\"How To: Import AD Users from .csv file | System Admin [RESOLVED]\",\"description\":\"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/how-to-import-ad-users-from-csv-file\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2013-10-18T22:12:33+00:00\",\"dateModified\":\"2026-07-02T16:57:33+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/\",\"name\":\"System Admin [RESOLVED]\",\"description\":\"How To: Make My DevOps Life Easier\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.edrockwell.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How To: Import AD Users from .csv file | System Admin [RESOLVED]","description":"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the","canonical_url":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/","robots":"max-image-preview:large","keywords":"add-aduser,import users in ad,powershell","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#article","name":"How To: Import AD Users from .csv file | System Admin [RESOLVED]","headline":"How To: Import AD Users from .csv file","author":{"@id":"https:\/\/www.edrockwell.com\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.edrockwell.com\/blog\/#organization"},"datePublished":"2013-10-18T22:12:33+00:00","dateModified":"2026-07-02T16:57:33+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#webpage"},"isPartOf":{"@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#webpage"},"articleSection":"PowerShell, Add-ADUser, import users in ad, Powershell"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.edrockwell.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.edrockwell.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.edrockwell.com\/blog\/category\/powershell\/#listItem","name":"PowerShell"}},{"@type":"ListItem","@id":"https:\/\/www.edrockwell.com\/blog\/category\/powershell\/#listItem","position":2,"name":"PowerShell","item":"https:\/\/www.edrockwell.com\/blog\/category\/powershell\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#listItem","name":"How To: Import AD Users from .csv file"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.edrockwell.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#listItem","position":3,"name":"How To: Import AD Users from .csv file","previousItem":{"@type":"ListItem","@id":"https:\/\/www.edrockwell.com\/blog\/category\/powershell\/#listItem","name":"PowerShell"}}]},{"@type":"Organization","@id":"https:\/\/www.edrockwell.com\/blog\/#organization","name":"System Admin [RESOLVED]","description":"How To: Make My DevOps Life Easier","url":"https:\/\/www.edrockwell.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.edrockwell.com\/blog\/author\/admin\/#author","url":"https:\/\/www.edrockwell.com\/blog\/author\/admin\/","name":"Ed Rockwell","image":{"@type":"ImageObject","@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/dea3152d7acd78aa28d280207c33f7ec516731ece9a54249cbbbebcfffc341e0?s=96&d=mm&r=g","width":96,"height":96,"caption":"Ed Rockwell"}},{"@type":"WebPage","@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#webpage","url":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/","name":"How To: Import AD Users from .csv file | System Admin [RESOLVED]","description":"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.edrockwell.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/#breadcrumblist"},"author":{"@id":"https:\/\/www.edrockwell.com\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.edrockwell.com\/blog\/author\/admin\/#author"},"datePublished":"2013-10-18T22:12:33+00:00","dateModified":"2026-07-02T16:57:33+00:00"},{"@type":"WebSite","@id":"https:\/\/www.edrockwell.com\/blog\/#website","url":"https:\/\/www.edrockwell.com\/blog\/","name":"System Admin [RESOLVED]","description":"How To: Make My DevOps Life Easier","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.edrockwell.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"System Admin [RESOLVED] | How To: Make My DevOps Life Easier","og:type":"article","og:title":"How To: Import AD Users from .csv file | System Admin [RESOLVED]","og:description":"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the","og:url":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/","article:published_time":"2013-10-18T22:12:33+00:00","article:modified_time":"2026-07-02T16:57:33+00:00","twitter:card":"summary","twitter:title":"How To: Import AD Users from .csv file | System Admin [RESOLVED]","twitter:description":"I had a project that required me to make over 40 domain accounts. I decided that it was time to create all the domain accounts with a Powershell script. The script I came up with uses an import csv file with all the accounts and info I needed in it. Make sure you take the"},"aioseo_meta_data":{"post_id":"76","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-15 23:07:13","updated":"2026-07-02 17:24:20","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.edrockwell.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.edrockwell.com\/blog\/category\/powershell\/\" title=\"PowerShell\">PowerShell<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow To: Import AD Users from .csv file\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.edrockwell.com\/blog"},{"label":"PowerShell","link":"https:\/\/www.edrockwell.com\/blog\/category\/powershell\/"},{"label":"How To: Import AD Users from .csv file","link":"https:\/\/www.edrockwell.com\/blog\/how-to-import-ad-users-from-csv-file\/"}],"_links":{"self":[{"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/posts\/76","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/comments?post=76"}],"version-history":[{"count":7,"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/posts\/76\/revisions"}],"predecessor-version":[{"id":84,"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/posts\/76\/revisions\/84"}],"wp:attachment":[{"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/media?parent=76"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/categories?post=76"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edrockwell.com\/blog\/wp-json\/wp\/v2\/tags?post=76"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}