{"id":1288,"date":"2026-01-02T18:24:44","date_gmt":"2026-01-02T18:24:44","guid":{"rendered":"https:\/\/digitwaves.com\/?p=1288"},"modified":"2026-01-03T17:43:47","modified_gmt":"2026-01-03T17:43:47","slug":"n8n-workflow-connect-to-google-sheets","status":"publish","type":"post","link":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/","title":{"rendered":"n8n Workflow: Connect to Google Sheets Example"},"content":{"rendered":"<p><strong>Create n8n Nodes:<\/strong><\/p>\n<ol>\n<li>Create new workflow and name it something meaningful<\/li>\n<li>Select &#8216;form submission&#8217; trigger for the first node\n<ol>\n<li>Create test fields &#8216;First Name&#8217;, &#8216;Last Name&#8217;,\u00a0 &#8216;Email Address&#8217;, and &#8216;Position&#8217;.<\/li>\n<li>Test the form to confirm that data can be submitted<\/li>\n<li>Pin the sample data so it can be used in the current workflow<\/li>\n<\/ol>\n<\/li>\n<li>Select &#8216;Action in App&#8217; for the next node<\/li>\n<li>Search for &#8216;Google Sheets&#8217; and click on the icon<\/li>\n<li>Click &#8216;Append or update row in sheet.&#8217;<\/li>\n<li>Select &#8216;Create new credentials&#8217; from the &#8216;Credential to connect with&#8217; dropdown menu (or add existing connection if one exists)<\/li>\n<li>Select the &#8216;OAuth2 recommended&#8217; radio button<\/li>\n<li>Make sure to save your workflow frequently<\/li>\n<\/ol>\n<p><strong>Create OAuth2 strings (credentials to be used in n8n) in Google Cloud Console :<\/strong><\/p>\n<ol>\n<li>Create credentials in Google Cloud Console (https:\/\/cloud.google.com\/).\u00a0 You need a Google account for this &#8211; make sure you are logged in to the Google account you want to create OAuth keys on.<\/li>\n<li>Click &#8216;APIs &amp; Services&#8217;<\/li>\n<li>Click &#8216;OAuth Consent Screen&#8217;<\/li>\n<li>Click the &#8216;Clients&#8217; link on the left navigation menu<\/li>\n<li>Click &#8216;Create Client +&#8217; in the top menu<\/li>\n<li>Select &#8216;Web Application&#8217; from the &#8216;Application Type&#8217; dropdown menu<\/li>\n<li>Give OAuth2 a name (e.g., Connect to Sheets using n8n).<\/li>\n<li>Under &#8216;Authorized redirect URIs,&#8217; copy and paste the redirect URL shown in n8n&#8217;s &#8216;OAuth Redirect URL&#8217; in the OAuth2 connection string dialog box<br \/>\nClick the blue &#8216;Create&#8217; button<\/li>\n<li>Copy the OAuth2 connection strings (Client Id and Client Secret) to a safe place<\/li>\n<li>Click the &#8216;Audience&#8217; link in the left-hand navigation<\/li>\n<li>Add test user email accounts (the same email account you used to create the OAuth2 connection strings)<\/li>\n<li>Important! Enable Google Drive API from (https:\/\/console.cloud.google.com\/apis\/api\/drive.googleapis.com\/), otherwise the n8n will not load the Spreadsheet documents in the n8n Google Sheets node when it comes time to choose a Document to Append or Update to.<\/li>\n<li>Important! Enable Google Sheets API from (https:\/\/console.cloud.google.com\/apis\/api\/sheets.googleapis.com\/), otherwise n8n will not load the Sheets in the n8n Google Sheets node when it comes time to choose a Sheet to update form data to.<\/li>\n<\/ol>\n<p><strong>Google credentials configuration:<\/strong><\/p>\n<ol>\n<li>Add the Client ID and Client Secret to the fields in the &#8216;Connection&#8217; dialog box<\/li>\n<li>Click the &#8216;Sign In With Google&#8217; button<\/li>\n<li>Select the Google email account you used to create the OAuth2 connection<\/li>\n<li>Click the &#8216;Continue&#8217; link for the &#8216;Google hasn\u2019t verified this app&#8217; pop-up window<\/li>\n<li>For the Google dialog window that popup &#8216;wants additional access to your Google Account, click the &#8216;Continue&#8217; link<\/li>\n<li>If all went well, you will see a follow-up dialog window that the connection to n8n was successful<\/li>\n<\/ol>\n<p><strong>Google Sheets and n8n configuration and test:<\/strong><\/p>\n<ol>\n<li>Create a new Google Sheet (https:\/\/docs.google.com\/spreadsheets\/) on the same Google email account you created the OAuth2 connection.<\/li>\n<li>Add the fields that were created on the form in the first trigger node<\/li>\n<li>Settings should be:\n<ol>\n<li>Resource: &#8216;Sheets Within Documents&#8217;<\/li>\n<li>Operation:\u00a0 &#8216;Append or Update Row&#8217;<\/li>\n<li>Select the Document you created earlier in Google Sheets from the Document dropdown menu. NOTE: Make sure you enable the Google Drive API; you will get an error that the Google Drive API has not been enabled when you try to select a Document from the &#8216;Documents&#8217; dropdown list.<\/li>\n<li>Select the Sheet that you created.\u00a0 NOTE: Make sure you enable the Google Sheets API; you will get an error that the Google Sheets API has not been enabled when you try to select a Sheet from the &#8216;Sheets&#8217; dropdown list.<\/li>\n<li>For &#8216;Mapping Column Mode&#8217; select &#8216;Manual.&#8217;<\/li>\n<li>Drag and drop the form fields you created in the form node to the Google Sheet fields.<\/li>\n<li>Make sure the &#8216;Email Address&#8217; field is dragged to the &#8216;Column to match on&#8217; field.<\/li>\n<li>Click the &#8216;Execute Step&#8217; orange button to append the pinned submitted form data to the Excel Sheet.<\/li>\n<li>Check the Sheet to confirm the data was added\/appended.<\/li>\n<li>Save your workflow (it\u00a0 may auto-save or it may not)<\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<p><strong>Create a filter (node 3) to filter out rows in the Google Sheet (node 2):<\/strong><\/p>\n<ol>\n<li>Search for Filter<\/li>\n<li>Drag and drop &#8216;Position&#8217; into &#8216;Value1&#8217;.<\/li>\n<li>Is equal 2 should be = to &#8216;Student&#8217;<\/li>\n<li>Test the workflow to confirm it is keeping the position where the student was selected in the form dropdown list.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p><strong>Send filtered form submission (node 3) to Gmail inbox (node 4):<\/strong><\/p>\n<ol>\n<li>Search for Gmail in the node list and select &#8216;Send a message.&#8217;<\/li>\n<li>For &#8216;credentials to connect with&#8217;, select OAuth2<\/li>\n<li>Use the same OAuth2 keys for the Gmail node<\/li>\n<li>Select which permissions to allow n8n in the Gmail dialog box.<\/li>\n<li>Confirm the connection is made in the n8n Gmail dialog box (showing in the &#8216;credentials to connect with&#8217; dropdown list).<\/li>\n<li>Resource: &#8216;Message&#8217;, To: &#8217;email account that you can check inbox, Subject: &#8216;A student&#8217;, and Message: &#8216;this is your student&#8217;.<\/li>\n<li>NOTE: Make sure to enable the Gmail API on the Gmail account you created the n8n workflow on (https:\/\/console.developers.google.com\/apis\/api\/gmail.googleapis.com), else the Gmail node will not send the filtered message in the workflow<\/li>\n<li>Go to the inbox of the email account you assigned to accept messages and check that the sent message is in the inbox.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create n8n Nodes: Create new workflow and name it something meaningful Select &#8216;form submission&#8217; trigger for the first node Create test fields &#8216;First Name&#8217;, &#8216;Last [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1316,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9,6],"tags":[],"class_list":["post-1288","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai","category-n8n"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>n8n Workflow: Connect to Google Sheets Example - Digit Waves<\/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:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"n8n Workflow: Connect to Google Sheets Example - Digit Waves\" \/>\n<meta property=\"og:description\" content=\"Create n8n Nodes: Create new workflow and name it something meaningful Select &#8216;form submission&#8217; trigger for the first node Create test fields &#8216;First Name&#8217;, &#8216;Last [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/\" \/>\n<meta property=\"og:site_name\" content=\"Digit Waves\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-02T18:24:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-03T17:43:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/digitwaves.com\/wp-content\/uploads\/2026\/01\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1536\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"cmartin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"cmartin\" \/>\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:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/\"},\"author\":{\"name\":\"cmartin\",\"@id\":\"https:\\\/\\\/digitwaves.com\\\/#\\\/schema\\\/person\\\/223d018061f352913b760bf9b09a8097\"},\"headline\":\"n8n Workflow: Connect to Google Sheets Example\",\"datePublished\":\"2026-01-02T18:24:44+00:00\",\"dateModified\":\"2026-01-03T17:43:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/\"},\"wordCount\":885,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/digitwaves.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg\",\"articleSection\":[\"AI\",\"n8n\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/\",\"url\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/\",\"name\":\"n8n Workflow: Connect to Google Sheets Example - Digit Waves\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/digitwaves.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg\",\"datePublished\":\"2026-01-02T18:24:44+00:00\",\"dateModified\":\"2026-01-03T17:43:47+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/#\\\/schema\\\/person\\\/223d018061f352913b760bf9b09a8097\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#primaryimage\",\"url\":\"https:\\\/\\\/digitwaves.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg\",\"contentUrl\":\"https:\\\/\\\/digitwaves.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg\",\"width\":1536,\"height\":768},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/n8n-workflow-connect-to-google-sheets\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/digitwaves.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"n8n Workflow: Connect to Google Sheets Example\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/digitwaves.com\\\/#website\",\"url\":\"https:\\\/\\\/digitwaves.com\\\/\",\"name\":\"Digit Waves\",\"description\":\"Just another WordPress site\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/digitwaves.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/digitwaves.com\\\/#\\\/schema\\\/person\\\/223d018061f352913b760bf9b09a8097\",\"name\":\"cmartin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2aa893c0e8a64727fc5308b3b422801ee1f800294e70ee6ac57fd6b86a104eb2?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2aa893c0e8a64727fc5308b3b422801ee1f800294e70ee6ac57fd6b86a104eb2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2aa893c0e8a64727fc5308b3b422801ee1f800294e70ee6ac57fd6b86a104eb2?s=96&d=mm&r=g\",\"caption\":\"cmartin\"},\"sameAs\":[\"http:\\\/\\\/digitwaves.com\"],\"url\":\"https:\\\/\\\/digitwaves.com\\\/index.php\\\/author\\\/cmartin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"n8n Workflow: Connect to Google Sheets Example - Digit Waves","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:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/","og_locale":"en_US","og_type":"article","og_title":"n8n Workflow: Connect to Google Sheets Example - Digit Waves","og_description":"Create n8n Nodes: Create new workflow and name it something meaningful Select &#8216;form submission&#8217; trigger for the first node Create test fields &#8216;First Name&#8217;, &#8216;Last [&hellip;]","og_url":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/","og_site_name":"Digit Waves","article_published_time":"2026-01-02T18:24:44+00:00","article_modified_time":"2026-01-03T17:43:47+00:00","og_image":[{"width":1536,"height":768,"url":"https:\/\/digitwaves.com\/wp-content\/uploads\/2026\/01\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg","type":"image\/jpeg"}],"author":"cmartin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"cmartin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#article","isPartOf":{"@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/"},"author":{"name":"cmartin","@id":"https:\/\/digitwaves.com\/#\/schema\/person\/223d018061f352913b760bf9b09a8097"},"headline":"n8n Workflow: Connect to Google Sheets Example","datePublished":"2026-01-02T18:24:44+00:00","dateModified":"2026-01-03T17:43:47+00:00","mainEntityOfPage":{"@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/"},"wordCount":885,"commentCount":0,"image":{"@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#primaryimage"},"thumbnailUrl":"https:\/\/digitwaves.com\/wp-content\/uploads\/2026\/01\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg","articleSection":["AI","n8n"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/","url":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/","name":"n8n Workflow: Connect to Google Sheets Example - Digit Waves","isPartOf":{"@id":"https:\/\/digitwaves.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#primaryimage"},"image":{"@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#primaryimage"},"thumbnailUrl":"https:\/\/digitwaves.com\/wp-content\/uploads\/2026\/01\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg","datePublished":"2026-01-02T18:24:44+00:00","dateModified":"2026-01-03T17:43:47+00:00","author":{"@id":"https:\/\/digitwaves.com\/#\/schema\/person\/223d018061f352913b760bf9b09a8097"},"breadcrumb":{"@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#primaryimage","url":"https:\/\/digitwaves.com\/wp-content\/uploads\/2026\/01\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg","contentUrl":"https:\/\/digitwaves.com\/wp-content\/uploads\/2026\/01\/u5326131265_Create_a_clean_abstract_flat_illustration_represe_10e73239-a70e-4e49-8322-80a1a71c34a7_1.jpg","width":1536,"height":768},{"@type":"BreadcrumbList","@id":"https:\/\/digitwaves.com\/index.php\/n8n-workflow-connect-to-google-sheets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/digitwaves.com\/"},{"@type":"ListItem","position":2,"name":"n8n Workflow: Connect to Google Sheets Example"}]},{"@type":"WebSite","@id":"https:\/\/digitwaves.com\/#website","url":"https:\/\/digitwaves.com\/","name":"Digit Waves","description":"Just another WordPress site","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/digitwaves.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/digitwaves.com\/#\/schema\/person\/223d018061f352913b760bf9b09a8097","name":"cmartin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2aa893c0e8a64727fc5308b3b422801ee1f800294e70ee6ac57fd6b86a104eb2?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2aa893c0e8a64727fc5308b3b422801ee1f800294e70ee6ac57fd6b86a104eb2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2aa893c0e8a64727fc5308b3b422801ee1f800294e70ee6ac57fd6b86a104eb2?s=96&d=mm&r=g","caption":"cmartin"},"sameAs":["http:\/\/digitwaves.com"],"url":"https:\/\/digitwaves.com\/index.php\/author\/cmartin\/"}]}},"_links":{"self":[{"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/posts\/1288","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/comments?post=1288"}],"version-history":[{"count":19,"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/posts\/1288\/revisions"}],"predecessor-version":[{"id":1307,"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/posts\/1288\/revisions\/1307"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/media\/1316"}],"wp:attachment":[{"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/media?parent=1288"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/categories?post=1288"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/digitwaves.com\/index.php\/wp-json\/wp\/v2\/tags?post=1288"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}