{"id":8806,"date":"2026-07-09T06:51:14","date_gmt":"2026-07-09T06:51:14","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=8806"},"modified":"2026-07-09T06:51:14","modified_gmt":"2026-07-09T06:51:14","slug":"steps-to-create-and-publish-a-platform-event-in-salesforce","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/","title":{"rendered":"Steps to Create and Publish a Platform Event in Salesforce"},"content":{"rendered":"<p><b>Platform <a href=\"https:\/\/blog.webnersolutions.com\/events-and-eventemitter-in-node-js\/\" target=\"_blank\" rel=\"noopener\">Events<\/a><\/b><span style=\"font-weight: 400;\"> are a feature in Salesforce that enable event-driven communication between systems. They allow Salesforce and external systems (like MuleSoft, external applications, or middleware) to communicate asynchronously through a publish\u2013subscribe model.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Platform Events are designed to support real-time integrations and loosely coupled system architectures.<\/span><\/p>\n<h3><b>Platform Event Definition<\/b><\/h3>\n<p><span style=\"font-weight: 400;\">A <\/span><b>Platform Event<\/b><span style=\"font-weight: 400;\"> is a special type of Salesforce object that represents something that has happened in the system.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Examples:<\/span><\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A policy is created<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A claim is updated<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A payment is processed<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A record is approved<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">Instead of directly calling another system, Salesforce <\/span><b>publishes an event<\/b><span style=\"font-weight: 400;\">, and subscribed systems <\/span><b>react to it<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">This is known as event-driven<\/span><b> architecture<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n<p><b>Create a Platform Event:<\/b><\/p>\n<ol>\n<li style=\"list-style-type: none;\">\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Go to <\/span><b>Setup<\/b><span style=\"font-weight: 400;\">.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Search <\/span><b>Platform Event<\/b><span style=\"font-weight: 400;\">.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Click New and type the name of the event you want to create.<\/span><\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<p><b>A Platform Event (example):<\/b><\/p>\n<p><b>Event Name:<\/b><span style=\"font-weight: 400;\"> Order_Download_Event__e<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Example fields:<\/span><\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Order_Number__c<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Customer_Id__c<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Order_Type__c<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Order_Date__c<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Order_Status__c<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payment_Method__c\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Shipping_Address__c\u00a0<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Payload__c<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Source_System__c<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p><span style=\"font-weight: 400;\">An event sends Order transaction data to Salesforce asynchronously.<\/span><\/p>\n<p><b>Publishing the Platform Event<\/b><\/p>\n<p><span style=\"font-weight: 400;\">The publisher is responsible for creating and sending the event after <\/span><b>Order <\/b><span style=\"font-weight: 400;\">data is downloaded and validated.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Publishing can be done using Apex, middleware, or an API integration.<\/span><\/p>\n<p><b>Example <a href=\"https:\/\/studysection.com\/blog\/recursion-in-apex\/\" target=\"_blank\" rel=\"noopener\">Apex<\/a> Publisher<\/b><\/p>\n<p><span style=\"font-weight: 400;\">Order_Download_Event__e eventMsg = new Order_Download_Event__e(<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Order_Number__c = orderNumber,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Customer_Id__c = customerId,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Order_Date__c = orderDate,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Order_Amount__c = orderAmount,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Order_Status__c = orderStatus,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Payment_Method__c = paymentMethod,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Shipping_Address__c = shippingAddress,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Payload__c = orderJson,<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0Source_System__c = &#8216;Test Integration&#8217;<\/span><\/p>\n<p><span style=\"font-weight: 400;\">);<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Database.SaveResult result = EventBus.publish(eventMsg);<\/span><\/p>\n<h3><b>Publishing Flow<\/b><\/h3>\n<ol>\n<li style=\"list-style-type: none;\">\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Order file is downloaded.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Data is parsed and validated.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Event payload is constructed.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Platform Event is published to the Salesforce Event Bus.<\/span><\/li>\n<\/ol>\n<\/li>\n<\/ol>\n<p><span style=\"font-weight: 400;\">Once published, Salesforce manages delivery to all subscribers.<\/span><\/p>\n<h2><b>Why Use Platform Events?<\/b><\/h2>\n<p><span style=\"font-weight: 400;\">Platform Events are useful when:<\/span><\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Multiple systems need to be notified about a change.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">You want loose coupling between systems.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Real-time or near-real-time communication is required.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">You want scalable integration architecture.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">You want to avoid tight point-to-point integrations.<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Platform Events are a feature in Salesforce that enable event-driven communication between systems. They allow Salesforce and external systems (like<\/p>\n","protected":false},"author":1,"featured_media":8810,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[914],"tags":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Steps to Create and Publish a Platform Event in Salesforce<\/title>\n<meta name=\"description\" content=\"Learn Salesforce Platform Events, event-driven architecture, Apex publishing, and real-time Salesforce integrations.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Steps to Create and Publish a Platform Event in Salesforce\" \/>\n<meta property=\"og:description\" content=\"Learn Salesforce Platform Events, event-driven architecture, Apex publishing, and real-time Salesforce integrations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-09T06:51:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2026\/07\/Steps-to-Create-and-Publish-a-Platform-Event-in-Salesforce1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"940\" \/>\n\t<meta property=\"og:image:height\" content=\"788\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"Steps to Create and Publish a Platform Event in Salesforce\",\"datePublished\":\"2026-07-09T06:51:14+00:00\",\"dateModified\":\"2026-07-09T06:51:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/\"},\"wordCount\":348,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"articleSection\":[\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/\",\"url\":\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/\",\"name\":\"Steps to Create and Publish a Platform Event in Salesforce\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2026-07-09T06:51:14+00:00\",\"dateModified\":\"2026-07-09T06:51:14+00:00\",\"description\":\"Learn Salesforce Platform Events, event-driven architecture, Apex publishing, and real-time Salesforce integrations.\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Steps to Create and Publish a Platform Event in Salesforce\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Steps to Create and Publish a Platform Event in Salesforce","description":"Learn Salesforce Platform Events, event-driven architecture, Apex publishing, and real-time Salesforce integrations.","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:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/","og_locale":"en_US","og_type":"article","og_title":"Steps to Create and Publish a Platform Event in Salesforce","og_description":"Learn Salesforce Platform Events, event-driven architecture, Apex publishing, and real-time Salesforce integrations.","og_url":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2026-07-09T06:51:14+00:00","og_image":[{"width":940,"height":788,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2026\/07\/Steps-to-Create-and-Publish-a-Platform-Event-in-Salesforce1.png","type":"image\/png"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"Steps to Create and Publish a Platform Event in Salesforce","datePublished":"2026-07-09T06:51:14+00:00","dateModified":"2026-07-09T06:51:14+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/"},"wordCount":348,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"articleSection":["Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/","url":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/","name":"Steps to Create and Publish a Platform Event in Salesforce","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2026-07-09T06:51:14+00:00","dateModified":"2026-07-09T06:51:14+00:00","description":"Learn Salesforce Platform Events, event-driven architecture, Apex publishing, and real-time Salesforce integrations.","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/steps-to-create-and-publish-a-platform-event-in-salesforce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Steps to Create and Publish a Platform Event in Salesforce"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":5,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/8806"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=8806"}],"version-history":[{"count":3,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/8806\/revisions"}],"predecessor-version":[{"id":8809,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/8806\/revisions\/8809"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/8810"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=8806"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=8806"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=8806"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}