{"id":23,"date":"2026-04-04T15:34:13","date_gmt":"2026-04-04T15:34:13","guid":{"rendered":"https:\/\/www.martechmonitoring.com\/blog\/?p=23"},"modified":"2026-04-04T15:34:13","modified_gmt":"2026-04-04T15:34:13","slug":"sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors","status":"publish","type":"post","link":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/","title":{"rendered":"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors"},"content":{"rendered":"<h2>Understanding SFMC Broken Journeys: What They Are and Why They Happen<\/h2>\n<p>In Salesforce Marketing Cloud (SFMC), journeys are the backbone of personalized customer experiences, orchestrating emails, SMS, and other interactions across complex automation paths. However, a broken journey can halt progress, leading to missed opportunities and frustrated stakeholders. As an SFMC practitioner with years of hands-on experience, I&#8217;ve seen how even minor misconfigurations can cascade into major disruptions. This guide dives deep into the SFMC broken journey fix, offering technical insights, debugging techniques, and best practices to get your journeys back on track.<\/p>\n<p>A &#8216;broken journey&#8217; typically refers to a journey that fails to inject contacts, process entries, or execute activities as intended. Common symptoms include zero entries in the journey dashboard, stalled automations, or error logs filled with cryptic messages. These issues often stem from entry source problems, data inconsistencies, or integration glitches. By mastering the fix process, you can minimize downtime and ensure reliable campaign performance.<\/p>\n<h3>Common Causes of Broken Journeys in SFMC<\/h3>\n<ul>\n<li><strong>Entry Source Configuration Errors:<\/strong> If your data extension, event, or API entry source isn&#8217;t properly set up, contacts won&#8217;t enter the journey. For instance, mismatched field names between the source and journey can block injections.<\/li>\n<li><strong>Data Quality Issues:<\/strong> Invalid subscriber keys, duplicate entries, or missing required fields in data extensions often trigger failures. SFMC&#8217;s strict validation rules exacerbate this.<\/li>\n<li><strong>Automation and Schedule Conflicts:<\/strong> Journeys tied to automations may break if the parent automation is paused, has SQL query errors, or exceeds API limits.<\/li>\n<li><strong>Permission and Access Problems:<\/strong> Role-based access controls (RBAC) might prevent certain users or integrations from injecting data, leading to silent failures.<\/li>\n<li><strong>Integration and API Failures:<\/strong> When using Salesforce Data Cloud or external APIs, network issues or authentication token expirations can interrupt entry flows.<\/li>\n<\/ul>\n<p>Identifying the root cause is the first step in any SFMC broken journey fix. Always start by reviewing the journey&#8217;s entry source settings in Journey Builder\u2014it&#8217;s where 70% of issues originate, based on my troubleshooting history.<\/p>\n<h2>Step-by-Step Guide to Fixing a Broken Journey in SFMC<\/h2>\n<p>Let&#8217;s walk through a practical, actionable process to diagnose and resolve journey failures. This method is derived from real-world scenarios I&#8217;ve encountered while managing enterprise SFMC instances. Assume you&#8217;re working in a mid-sized setup with multiple data extensions and automations.<\/p>\n<h3>Step 1: Verify Entry Source and Data Integrity<\/h3>\n<p>Begin in Journey Builder. Navigate to your affected journey and inspect the Entry Source panel. For data extension entries, ensure the extension is active and populated. Run a quick SQL query in Automation Studio to validate data:<\/p>\n<blockquote>\n<p>SELECT COUNT(*) FROM YourDataExtension WHERE SubscriberKey IS NOT NULL AND EmailAddress IS NOT NULL;<\/p>\n<\/blockquote>\n<p>If the count is zero or unexpectedly low, scrub your data for nulls or invalids. Use SFMC&#8217;s Data Views (like _Journey) to audit past entries: <em>SELECT * FROM _Journey WHERE JourneyID = &#8216;YourJourneyID&#8217; AND EventDate &gt; DATEADD(day, -7, GETDATE())<\/em>. This reveals if entries are queuing but not processing.<\/p>\n<p>Pro Tip: Enable &#8216;Wait by Attribute&#8217; if your journey relies on dynamic timing\u2014mismatches here often mimic broken entries.<\/p>\n<h3>Step 2: Check Automation and Scheduling<\/h3>\n<p>Journeys don&#8217;t operate in isolation; they&#8217;re often triggered by automations. In Automation Studio, confirm the automation is active and its schedule aligns with your journey&#8217;s needs. Look for SQL activity errors\u2014common culprits include syntax issues or filter mismatches.<\/p>\n<p>To fix: Pause the automation, edit the SQL or filter activities, and test with a small dataset. For event-based entries, verify the Event Definition in Contact Builder matches your payload. A broken journey fix here might involve regenerating API keys or updating webhook URLs.<\/p>\n<ul>\n<li>Test API injections using Postman: Send a sample payload to \/interaction\/v1\/interactions\/{JourneyKey}:entry to simulate real entries.<\/li>\n<li>Monitor throttling: SFMC limits API calls to 1,000 per hour per business unit\u2014exceeding this queues failures.<\/li>\n<\/ul>\n<h3>Step 3: Audit Permissions and Integrations<\/h3>\n<p>Permissions can be sneaky. Ensure your user role has &#8216;Journeys&#8217; and &#8216;Automation Studio&#8217; access via Setup &gt; Users &gt; Roles. For integrations, check the Installed Packages for API permissions.<\/p>\n<p>If using Salesforce CRM integration, validate the connector in Setup &gt; Platform Tools &gt; Salesforce Marketing Cloud Connector. Broken syncs often cause journey entry halts. Fix by re-authenticating or clearing cache in the connector settings.<\/p>\n<p>For external tools like Google Analytics or custom APIs, review logs in the API Event Log (under Tracking &gt; API Event Log). Filter by error codes like 400 (Bad Request) or 401 (Unauthorized) to pinpoint issues.<\/p>\n<h3>Step 4: Test and Validate the Fix<\/h3>\n<p>After adjustments, activate a test version of the journey. Inject 5-10 test contacts via a dedicated data extension and monitor the dashboard for 15-30 minutes. Use the Journey History report to confirm progression.<\/p>\n<p>Key Metrics to Watch:<\/p>\n<ul>\n<li>Entry Rate: Should match your source data count.<\/li>\n<li>Activity Completion: Emails sent, waits honored.<\/li>\n<li>Error Logs: Zero unhandled exceptions.<\/li>\n<\/ul>\n<p>If issues persist, enable debug mode in Journey Builder (under Advanced Settings) for granular logging. This has saved me hours in complex multi-channel journeys.<\/p>\n<h2>Best Practices to Prevent SFMC Broken Journeys<\/h2>\n<p>Prevention is better than cure. As an SFMC expert, I recommend these practitioner-level strategies to keep journeys robust:<\/p>\n<ul>\n<li><strong>Implement Data Validation Rules:<\/strong> Use SQL pre-filters in automations to catch invalids early. For example, add WHERE clauses for required fields.<\/li>\n<li><strong>Adopt Modular Journey Design:<\/strong> Break complex journeys into sub-journeys with clear entry\/exit criteria to isolate failures.<\/li>\n<li><strong>Leverage Monitoring Tools:<\/strong> Set up alerts for entry thresholds. Tools like our MarTech Monitoring service can proactively detect anomalies via real-time dashboards.<\/li>\n<li><strong>Regular Audits:<\/strong> Schedule bi-weekly reviews of data extensions and automations. Use SFMC&#8217;s System Overview report to spot trends.<\/li>\n<li><strong>Version Control:<\/strong> Document changes in Journey Builder notes and use SFMC&#8217;s change data capture for rollback capabilities.<\/li>\n<\/ul>\n<p>In one case, a client avoided a major campaign flop by implementing automated SQL checks that flagged a broken journey fix need 24 hours in advance\u2014highlighting the value of proactive monitoring.<\/p>\n<h3>Advanced Techniques for Persistent Issues<\/h3>\n<p>For stubborn cases, dive into SFMC&#8217;s backend. Query the _Sent, _Bounce, and _JourneyActivity data views for patterns. If API-related, use the SOAP API to force-inject test entries: <em>&lt;PerformRequestMsg&gt; &lt;RetrieveRequestMsg&gt; &lt;ObjectType&gt;Journey&lt;\/ObjectType&gt; &lt;Properties&gt;ID&lt;\/Properties&gt; &lt;\/RetrieveRequestMsg&gt; &lt;\/PerformRequestMsg&gt;<\/em>.<\/p>\n<p>Consider business unit hierarchies\u2014if you&#8217;re in a child BU, escalations to the parent might be needed for shared data issues.<\/p>\n<h2>Conclusion: Ensure Uninterrupted SFMC Journeys<\/h2>\n<p>Mastering the SFMC broken journey fix requires a blend of technical acumen and systematic troubleshooting. By following these steps\u2014verifying sources, auditing automations, and applying best practices\u2014you can resolve issues efficiently and fortify your setup against future disruptions. Remember, in the fast-paced world of marketing automation, reliability is key to driving results.<\/p>\n<p>Ready to take your SFMC monitoring to the next level? Learn more about continuous SFMC monitoring at <a href=\"https:\/\/www.martechmonitoring.com\">https:\/\/www.martechmonitoring.com<\/a>, where we catch journey failures, automation errors, and data extension issues before they impact your campaigns.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Struggling with SFMC broken journey fix? This guide covers common causes of journey failures in Salesforce Marketing Cloud, step-by-step troubleshooting, and prevention tips for seamless campaigns. (152 characters)<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-23","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors - Martech Monitoring<\/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:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors - Martech Monitoring\" \/>\n<meta property=\"og:description\" content=\"Struggling with SFMC broken journey fix? This guide covers common causes of journey failures in Salesforce Marketing Cloud, step-by-step troubleshooting, and prevention tips for seamless campaigns. (152 characters)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/\" \/>\n<meta property=\"og:site_name\" content=\"Martech Monitoring\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-04T15:34:13+00:00\" \/>\n<meta name=\"author\" content=\"Martech Monitoring Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Martech Monitoring Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/\"},\"author\":{\"name\":\"Martech Monitoring Team\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#\\\/schema\\\/person\\\/afd6b3932a86aecb0e3714d726a70c7d\"},\"headline\":\"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors\",\"datePublished\":\"2026-04-04T15:34:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/\"},\"wordCount\":1167,\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/\",\"url\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/\",\"name\":\"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors - Martech Monitoring\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-04-04T15:34:13+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#\\\/schema\\\/person\\\/afd6b3932a86aecb0e3714d726a70c7d\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/\",\"name\":\"Martech Monitoring\",\"description\":\"SFMC Silent Failure Detection\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/#\\\/schema\\\/person\\\/afd6b3932a86aecb0e3714d726a70c7d\",\"name\":\"Martech Monitoring Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g\",\"caption\":\"Martech Monitoring Team\"},\"sameAs\":[\"https:\\\/\\\/martechmonitoring.com\\\/blog\"],\"url\":\"https:\\\/\\\/www.martechmonitoring.com\\\/blog\\\/author\\\/martech-monitoring\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors - Martech Monitoring","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.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/","og_locale":"en_US","og_type":"article","og_title":"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors - Martech Monitoring","og_description":"Struggling with SFMC broken journey fix? This guide covers common causes of journey failures in Salesforce Marketing Cloud, step-by-step troubleshooting, and prevention tips for seamless campaigns. (152 characters)","og_url":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/","og_site_name":"Martech Monitoring","article_published_time":"2026-04-04T15:34:13+00:00","author":"Martech Monitoring Team","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Martech Monitoring Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/#article","isPartOf":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/"},"author":{"name":"Martech Monitoring Team","@id":"https:\/\/www.martechmonitoring.com\/blog\/#\/schema\/person\/afd6b3932a86aecb0e3714d726a70c7d"},"headline":"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors","datePublished":"2026-04-04T15:34:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/"},"wordCount":1167,"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/","url":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/","name":"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors - Martech Monitoring","isPartOf":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/#website"},"datePublished":"2026-04-04T15:34:13+00:00","author":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/#\/schema\/person\/afd6b3932a86aecb0e3714d726a70c7d"},"breadcrumb":{"@id":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.martechmonitoring.com\/blog\/sfmc-broken-journey-fix-expert-guide-to-diagnosing-and-resolving-entry-source-errors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.martechmonitoring.com\/blog\/"},{"@type":"ListItem","position":2,"name":"SFMC Broken Journey Fix: Expert Guide to Diagnosing and Resolving Entry Source Errors"}]},{"@type":"WebSite","@id":"https:\/\/www.martechmonitoring.com\/blog\/#website","url":"https:\/\/www.martechmonitoring.com\/blog\/","name":"Martech Monitoring","description":"SFMC Silent Failure Detection","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.martechmonitoring.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.martechmonitoring.com\/blog\/#\/schema\/person\/afd6b3932a86aecb0e3714d726a70c7d","name":"Martech Monitoring Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2666a39ad2e93828c8ed20d3e3a3804897d6b57162f36b7075a69a334291d74c?s=96&d=mm&r=g","caption":"Martech Monitoring Team"},"sameAs":["https:\/\/martechmonitoring.com\/blog"],"url":"https:\/\/www.martechmonitoring.com\/blog\/author\/martech-monitoring\/"}]}},"_links":{"self":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts\/23","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/comments?post=23"}],"version-history":[{"count":1,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts\/23\/revisions"}],"predecessor-version":[{"id":41,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/posts\/23\/revisions\/41"}],"wp:attachment":[{"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/media?parent=23"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/categories?post=23"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.martechmonitoring.com\/blog\/wp-json\/wp\/v2\/tags?post=23"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}