{"id":78970,"date":"2017-03-30T10:33:37","date_gmt":"2017-03-30T10:33:37","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=78970"},"modified":"2017-08-18T11:26:29","modified_gmt":"2017-08-18T11:26:29","slug":"how-to-fetch-records-through-rest-api-in-apex-class-salesforce","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/","title":{"rendered":"How to fetch records through REST API in Apex class Salesforce"},"content":{"rendered":"<p>In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started!<\/p>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">prerequisites<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>Whitelist your Salesforce base URL in Remote Sites.<\/p>\n<p><strong> Step 1: <\/strong>Copy the Salesforce base URL. For example: &#8220;https:\/\/c.na40.visual.force.com\/&#8221;.<br \/>\n<strong> Step 2: <\/strong> Go to <strong>Setup &gt; Security Controls &gt; Remote Site Settings <\/strong>.<br \/>\n<strong> Step 3: <\/strong> Click &#8220;New Remote Site&#8221; button. Enter the related Information and Save.<\/p>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">fetch records of sObjects through REST API<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>Apex controller code:<\/p>\n<pre class=\"brush:java\">public with sharing class AccountRest {\r\n    \r\n    \/**\r\n\t * Webkul Software.\r\n\t *\r\n\t * @category  Webkul\r\n\t * @author    Webkul\r\n\t * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\r\n\t * @license   https:\/\/store.webkul.com\/license.html\r\n\t**\/\r\n    \r\n    public list&lt;account&gt; acc{get{\r\n    \r\n    \t\/\/Define http Request \r\n    \t\/\/append your Query to the base url\r\n    \tHttpRequest req = new HttpRequest();\r\n        req.setEndpoint('https:\/\/'+URL.getSalesforceBaseUrl().getHost()+'\/services\/data\/v39.0\/query\/?q=SELECT+Id,Name,AccountNumber,Type+FROM+Account+limit+10');\r\n        req.setMethod('GET');\r\n        \r\n        \/\/Get SessionId\r\n        string autho = 'Bearer '+userInfo.getSessionId();\r\n        req.setHeader('Authorization', autho);\r\n        \r\n        \/\/Get Response\r\n        Http http = new Http();\r\n        HTTPresponse res= http.send(req);\r\n        string response = res.getBody();\r\n        \r\n        \/\/Deserialize obtained json response\r\n        string str = '['+ response.substring(response.indexOf('records\":[')+10,response.indexof(']}')) +']';\r\n        acc = (list&lt;Account&gt;)JSON.deserialize(str,list&lt;Account&gt;.class);\r\n        \r\n        return acc;    \r\n    }set;}\r\n    \r\n}<\/pre>\n<p>Visualforce Page:<\/p>\n<pre class=\"brush:xml\">&lt;apex:page controller=\"AccountRest\"&gt;\r\n\r\n    &lt;!-- \r\n    \/**\r\n     * Webkul Software.\r\n     *\r\n     * @category  Webkul\r\n     * @author    Webkul\r\n     * @copyright Copyright (c) 2010-2016 Webkul Software Private Limited (https:\/\/webkul.com)\r\n     * @license   https:\/\/store.webkul.com\/license.html\r\n     *\/\r\n     --&gt;\r\n\t&lt;apex:sectionHeader title=\"Accounts\" subtitle=\"List View\"\/&gt;\r\n\t&lt;apex:pageBlock&gt;\r\n\t\r\n\t\t&lt;apex:pageBlockTable value=\"{!acc}\" var=\"key\"&gt;\r\n\t\t\r\n\t\t\t&lt;apex:column&gt;\r\n\t\t\t\t&lt;apex:facet name=\"header\"&gt;Account Name&lt;\/apex:facet&gt;\r\n\t\t\t\t&lt;apex:outputLink value=\"\/{!key.Id}\"&gt;{!key.Name}&lt;\/apex:outputLink&gt;\r\n\t\t\t&lt;\/apex:column&gt;\r\n\t\t\t&lt;apex:column value=\"{!key.AccountNumber}\"\/&gt;\r\n\t\t\t&lt;apex:column value=\"{!key.Type}\"\/&gt;\t\r\n\t\t\r\n\t\t&lt;\/apex:pageBlockTable&gt;\r\n\t\r\n\t&lt;\/apex:pageBlock&gt;\r\n\r\n&lt;\/apex:page&gt;<\/pre>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\">Output<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>Here is the output:<br \/>\n<a href=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/output-1.jpg\"><img decoding=\"async\" class=\"alignnone wp-image-79035 size-full\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/output-1.jpg\" alt=\"\" width=\"1062\" height=\"380\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/output-1.jpg 1062w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/output-1-250x89.jpg 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/output-1-300x107.jpg 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/output-1-768x275.jpg 768w\" sizes=\"(max-width: 1062px) 100vw, 1062px\" loading=\"lazy\" \/><\/a><\/p>\n<\/div>\n<\/div>\n<div class=\"panel panel-primary\">\n<div class=\"panel-heading\">\n<h3 class=\"panel-title\"><i class=\"fa fa-user\"><\/i>Support<\/h3>\n<\/div>\n<div class=\"panel-body\">\n<p>That\u2019s all for how to fetch records of sObjects through REST API in Apex class, still have any issue feel free to add a ticket and let us know your views to make the code better <a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\"> https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/<\/a><\/p>\n<\/div>\n<\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started! prerequisites Whitelist your Salesforce base URL in Remote Sites. Step 1: Copy the Salesforce base URL. For example: &#8220;https:\/\/c.na40.visual.force.com\/&#8221;. Step 2: Go to Setup &gt; Security Controls &gt; Remote Site Settings <a href=\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":104,"featured_media":79038,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3128,1887],"tags":[4643,4644,4642],"class_list":["post-78970","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-api-support","category-salesforce","tag-fetch-records-of-sobjects-through-rest-api","tag-how-to-fetch-records-through-rest-api-in-apex-class-salesforce","tag-rest-api-in-apex"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to fetch records through REST API in Apex class Salesforce<\/title>\n<meta name=\"description\" content=\"In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to fetch records through REST API in Apex class Salesforce\" \/>\n<meta property=\"og:description\" content=\"In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-03-30T10:33:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-08-18T11:26:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aakanksha Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aakanksha Singh\" \/>\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:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\"},\"author\":{\"name\":\"Aakanksha Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\"},\"headline\":\"How to fetch records through REST API in Apex class Salesforce\",\"datePublished\":\"2017-03-30T10:33:37+00:00\",\"dateModified\":\"2017-08-18T11:26:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\"},\"wordCount\":144,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png\",\"keywords\":[\"fetch records of sObjects through REST API\",\"How to fetch records through REST API in Apex class Salesforce\",\"rest api in apex\"],\"articleSection\":[\"API Support\",\"Salesforce\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\",\"url\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\",\"name\":\"How to fetch records through REST API in Apex class Salesforce\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png\",\"datePublished\":\"2017-03-30T10:33:37+00:00\",\"dateModified\":\"2017-08-18T11:26:29+00:00\",\"description\":\"In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started!\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to fetch records through REST API in Apex class Salesforce\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80\",\"name\":\"Aakanksha Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Aakanksha Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to fetch records through REST API in Apex class Salesforce","description":"In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started!","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:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/","og_locale":"en_US","og_type":"article","og_title":"How to fetch records through REST API in Apex class Salesforce","og_description":"In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started!","og_url":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-03-30T10:33:37+00:00","article_modified_time":"2017-08-18T11:26:29+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png","type":"image\/png"}],"author":"Aakanksha Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Aakanksha Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/"},"author":{"name":"Aakanksha Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80"},"headline":"How to fetch records through REST API in Apex class Salesforce","datePublished":"2017-03-30T10:33:37+00:00","dateModified":"2017-08-18T11:26:29+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/"},"wordCount":144,"commentCount":2,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png","keywords":["fetch records of sObjects through REST API","How to fetch records through REST API in Apex class Salesforce","rest api in apex"],"articleSection":["API Support","Salesforce"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/","url":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/","name":"How to fetch records through REST API in Apex class Salesforce","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png","datePublished":"2017-03-30T10:33:37+00:00","dateModified":"2017-08-18T11:26:29+00:00","description":"In this blog we will learn how to fetch records of sObjects through REST API in Apex class in salesforce. Let us get started!","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/03\/webkul-1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/how-to-fetch-records-through-rest-api-in-apex-class-salesforce\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to fetch records through REST API in Apex class Salesforce"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/7d54984c6524404eb2ba261ace62da80","name":"Aakanksha Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/eef6d7ed23fc4ad8f12c94d6d6d30ec2ebbb9bedbf9d8a9dc8626a3a171fa3fa?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Aakanksha Singh"},"url":"https:\/\/webkul.com\/blog\/author\/aakanksha-singh391\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/78970","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=78970"}],"version-history":[{"count":7,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/78970\/revisions"}],"predecessor-version":[{"id":93183,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/78970\/revisions\/93183"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/79038"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=78970"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=78970"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=78970"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}