{"id":3570,"date":"2018-06-15T01:12:48","date_gmt":"2018-06-14T19:42:48","guid":{"rendered":"https:\/\/www.botreetechnologies.com\/blog\/?p=3570"},"modified":"2026-03-27T17:08:09","modified_gmt":"2026-03-27T11:38:09","slug":"how-to-fire-a-web-request-from-microsoft-sql-server","status":"publish","type":"post","link":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/","title":{"rendered":"How to Fire a Web Request from Microsoft SQL Server"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">What? Calling an API from Database?<\/h2>\n\n\n\n<p>Recently we came across a situation where we need to notify the web application when there are some data updates in MSSQL database, automatically.<\/p>\n\n\n\n<p>The only solution for this, I could find is firing HTTP request from the database itself, I know this is a bit weird but we gave it a try and YO man&#8230; succeeded!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How we did it?<\/h3>\n\n\n\n<p>Let&#8217;s have a look at how it can be implemented.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"620\" height=\"300\" src=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/12\/API-1.jpeg\" alt=\"Get API From Database\" class=\"wp-image-14258\" srcset=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/12\/API-1.jpeg 620w, https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/12\/API-1-300x145.jpeg 300w\" sizes=\"auto, (max-width: 620px) 100vw, 620px\" \/><\/figure>\n<\/div>\n\n\n<p>A basic requirement is you have to have a windows instance with MS SQL server because SQL server uses a predefined stored procedure to fire HTTP request which is supported only on windows! (It&#8217;s Microsoft, you know!)<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Read more: <a href=\"https:\/\/www.botreetechnologies.com\/blog\/devops-services-trends\/\" target=\"_blank\" rel=\"noreferrer noopener\">5 DevOps Services Trends to watch in 2021<\/a><\/strong><\/p>\n<\/blockquote>\n\n\n\n<p>You can use SQL Server Management Studio (SSMS) editor as an interface which is quite user-friendly.<\/p>\n\n\n\n<p>First of all, you need to enable you OLE Automation services, you can do this with the following query, run it through your favorite editor:<\/p>\n\n\n\n<p><code>sp_configure 'show advanced options', 1;<\/code><br><code>GO<\/code><br><code>RECONFIGURE;<\/code><br><code>GO<\/code><br><code>sp_configure 'Ole Automation Procedures', 1;<\/code><br><code>GO<\/code><br><code>RECONFIGURE;<\/code><br><code>GO<\/code><\/p>\n\n\n\n<p>Now, Suppose we have <i>orders<\/i> table and we want to update order status of a particular order and pass the order number and order status to the application. So first we will write a stored procedure for firing HTTP request which will pass these parameters to our application. A procedure is as follows:<\/p>\n\n\n\n<p><code>CREATE procedure [dbo].[change_order_status](<\/code><br><code>@order_number varchar(max),<\/code><br><code>@delivery_status int<\/code><br><code>)<\/code><br><code>as<\/code><br><strong><code>\/\/ Variable declaration<\/code><\/strong><br><code>DECLARE @authHeader NVARCHAR(64);<\/code><br><code>DECLARE @contentType NVARCHAR(64);<\/code><br><code>DECLARE @postData NVARCHAR(2000);<\/code><br><code>DECLARE @responseText NVARCHAR(2000);<\/code><br><code>DECLARE @responseXML NVARCHAR(2000);<\/code><br><code>DECLARE @ret INT;<\/code><br><code>DECLARE @status NVARCHAR(32);<\/code><br><code>DECLARE @statusText NVARCHAR(32);<\/code><br><code>DECLARE @token INT;<\/code><br><code>DECLARE @url NVARCHAR(256);<\/code><br><strong><code>\/\/ Set Authentications<\/code><\/strong><br><code>SET @authHeader = 'BASIC 0123456789ABCDEF0123456789ABCDEF';<\/code><br><code>SET @contentType = 'application\/x-www-form-urlencoded';<\/code><br><strong><code>\/\/ Set your desired url where you want to fire request<\/code><\/strong><br><code>SET @url = '<code>rel=\"noopener\"&gt;http:\/\/localhost:3000\/api\/v1\/orders\/update_status?<\/code>' + 'id=' + @order_number + '&amp;delivery_status=' + cast(@delivery_status as varchar)<\/code><br><strong><code>\/\/ Open a connection<\/code><\/strong><br><code>EXEC @ret = sp_OACreate 'MSXML2.ServerXMLHTTP', @token OUT;<\/code><br><code>IF @ret &lt;&gt; 0 RAISERROR('Unable to open HTTP connection.', 10, 1);<\/code><br><strong><code>\/\/ make a request<\/code><\/strong><br><code>EXEC @ret = sp_OAMethod @token, 'open', NULL, 'POST', @url, 'false';<\/code><br><code>EXEC @ret = sp_OAMethod @token, 'setRequestHeader', NULL, 'Authentication', @authHeader;<\/code><br><code>EXEC @ret = sp_OAMethod @token, 'setRequestHeader', NULL, 'Content-type', @contentType;<\/code><br><code>EXEC @ret = sp_OAMethod @token, 'send'<\/code><br><strong><code>\/\/ Handle responce<\/code><\/strong><br><code>EXEC @ret = sp_OAGetProperty @token, 'status', @status OUT;<\/code><br><code>EXEC @ret = sp_OAGetProperty @token, 'statusText', @statusText OUT;<\/code><br><code>EXEC @ret = sp_OAGetProperty @token, 'responseText', @responseText OUT;<\/code><br><strong><code>\/\/ Print responec<\/code><\/strong><br><code>PRINT 'Status: ' + @status + ' (' + @statusText + ')';<\/code><br><code>PRINT 'Response text: ' + @responseText;<\/code><\/p>\n\n\n\n<p>Now, we will write a trigger which will get fired after every update action on the orders table and will call our above-stored procedure.<\/p>\n\n\n\n<p><code>CREATE TRIGGER [dbo].[update_order_state]<\/code><br><code>ON [dbo].[orders]<\/code><br><code>AFTER UPDATE<\/code><br><code>AS<\/code><br><code>DECLARE @order_number varchar(max)<\/code><br><code>DECLARE @delivery_status int<\/code><br><strong><code>\/\/ set values to local variables for passing to stored procedure<\/code><\/strong><br><code>SELECT @order_number = order_number from inserted<\/code><br><code>SELECT @delivery_status = delivery_status FROM inserted<\/code><br><strong><code>\/\/ call stored procedure<\/code><\/strong><br><code>EXEC change_order_status @order_number,@delivery_status<\/code><\/p>\n\n\n\n<p>Finally, we will write a simple update query:<\/p>\n\n\n\n<p><code>UPDATE orders SET<\/code><br><code>[delivery_status] = 1<\/code><br><code>WHERE<\/code><br><code>order_number = 'order_2'<\/code><\/p>\n\n\n\n<p>That&#8217;s It&#8230;.! Once you fire this update query, your trigger will get fired and stored procedure will get executed which will fire HTTP request!<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Read Also:&nbsp;<a href=\"https:\/\/www.botreetechnologies.com\/blog\/amazon-s3-step-by-step-guide-to-enabling-versioning-of-uploaded-files-in-buckets\/\" target=\"_blank\" rel=\"noreferrer noopener\">Amazon S3: Enable Bucket Versioning<\/a><\/strong><\/p>\n<\/blockquote>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.botreetechnologies.com\/contact\" target=\"_blank\" rel=\"noreferrer noopener\">Consulting is free<\/a> &#8211; let us help you grow!<\/h3>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>What? Calling an API from Database? Recently we came across&#8230;<\/p>\n","protected":false},"author":23,"featured_media":14255,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,57],"tags":[],"class_list":["post-3570","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development","category-web-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Fire a Web Request from Microsoft SQL Server<\/title>\n<meta name=\"description\" content=\"Discover how to initiate web requests directly from Microsoft SQL Server. Streamline data integration and automate processes with ease.\" \/>\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.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Fire a Web Request from Microsoft SQL Server\" \/>\n<meta property=\"og:description\" content=\"Discover how to initiate web requests directly from Microsoft SQL Server. Streamline data integration and automate processes with ease.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"BoTree Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/BoTreeTechnologies\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-06-14T19:42:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-27T11:38:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"914\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Tejaswini Patil\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:site\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tejaswini Patil\" \/>\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:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/\"},\"author\":{\"name\":\"Tejaswini Patil\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/1a3ecba0676a15b503dfc2dab4f8821f\"},\"headline\":\"How to Fire a Web Request from Microsoft SQL Server\",\"datePublished\":\"2018-06-14T19:42:48+00:00\",\"dateModified\":\"2026-03-27T11:38:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/\"},\"wordCount\":313,\"commentCount\":26,\"image\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg\",\"articleSection\":[\"Development\",\"Web Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/\",\"name\":\"How to Fire a Web Request from Microsoft SQL Server\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg\",\"datePublished\":\"2018-06-14T19:42:48+00:00\",\"dateModified\":\"2026-03-27T11:38:09+00:00\",\"author\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/1a3ecba0676a15b503dfc2dab4f8821f\"},\"description\":\"Discover how to initiate web requests directly from Microsoft SQL Server. Streamline data integration and automate processes with ease.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg\",\"width\":1280,\"height\":914,\"caption\":\"Microsoft Sql Server\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.botreetechnologies.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Fire a Web Request from Microsoft SQL Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/\",\"name\":\"BoTree Technologies\",\"description\":\"Committed to inspire generation.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/1a3ecba0676a15b503dfc2dab4f8821f\",\"name\":\"Tejaswini Patil\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/tejaswini-patil-150x150.png\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/tejaswini-patil-150x150.png\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/tejaswini-patil-150x150.png\",\"caption\":\"Tejaswini Patil\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Fire a Web Request from Microsoft SQL Server","description":"Discover how to initiate web requests directly from Microsoft SQL Server. Streamline data integration and automate processes with ease.","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.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Fire a Web Request from Microsoft SQL Server","og_description":"Discover how to initiate web requests directly from Microsoft SQL Server. Streamline data integration and automate processes with ease.","og_url":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/","og_site_name":"BoTree Technologies","article_publisher":"https:\/\/www.facebook.com\/BoTreeTechnologies\/","article_published_time":"2018-06-14T19:42:48+00:00","article_modified_time":"2026-03-27T11:38:09+00:00","og_image":[{"width":1280,"height":914,"url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg","type":"image\/jpeg"}],"author":"Tejaswini Patil","twitter_card":"summary_large_image","twitter_creator":"@BoTreeTech","twitter_site":"@BoTreeTech","twitter_misc":{"Written by":"Tejaswini Patil","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#article","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/"},"author":{"name":"Tejaswini Patil","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/1a3ecba0676a15b503dfc2dab4f8821f"},"headline":"How to Fire a Web Request from Microsoft SQL Server","datePublished":"2018-06-14T19:42:48+00:00","dateModified":"2026-03-27T11:38:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/"},"wordCount":313,"commentCount":26,"image":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg","articleSection":["Development","Web Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/","url":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/","name":"How to Fire a Web Request from Microsoft SQL Server","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage"},"image":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg","datePublished":"2018-06-14T19:42:48+00:00","dateModified":"2026-03-27T11:38:09+00:00","author":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/1a3ecba0676a15b503dfc2dab4f8821f"},"description":"Discover how to initiate web requests directly from Microsoft SQL Server. Streamline data integration and automate processes with ease.","breadcrumb":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#primaryimage","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2018\/06\/Microsoft-SQL-Server.jpeg","width":1280,"height":914,"caption":"Microsoft Sql Server"},{"@type":"BreadcrumbList","@id":"https:\/\/www.botreetechnologies.com\/blog\/how-to-fire-a-web-request-from-microsoft-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.botreetechnologies.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Fire a Web Request from Microsoft SQL Server"}]},{"@type":"WebSite","@id":"https:\/\/www.botreetechnologies.com\/blog\/#website","url":"https:\/\/www.botreetechnologies.com\/blog\/","name":"BoTree Technologies","description":"Committed to inspire generation.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/1a3ecba0676a15b503dfc2dab4f8821f","name":"Tejaswini Patil","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/tejaswini-patil-150x150.png","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/tejaswini-patil-150x150.png","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/tejaswini-patil-150x150.png","caption":"Tejaswini Patil"}}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/3570","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/comments?post=3570"}],"version-history":[{"count":6,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/3570\/revisions"}],"predecessor-version":[{"id":20637,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/3570\/revisions\/20637"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media\/14255"}],"wp:attachment":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media?parent=3570"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/categories?post=3570"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/tags?post=3570"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}