{"id":5909,"date":"2020-04-13T12:54:28","date_gmt":"2020-04-13T07:24:28","guid":{"rendered":"https:\/\/www.innovationm.com\/blog\/?p=5909"},"modified":"2020-04-13T12:54:28","modified_gmt":"2020-04-13T07:24:28","slug":"the-rest-api-testing-checklist","status":"publish","type":"post","link":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/","title":{"rendered":"The REST API Testing Checklist"},"content":{"rendered":"<p><b>Overview:<\/b><\/p>\n<p><span style=\"font-weight: 400;\">API stands for <\/span><b>\u201cApplication Programming Interface\u201d<\/b><span style=\"font-weight: 400;\">. It is a program that allows the client and servers to talk to each other.\u00a0<\/span><\/p>\n<p><b>REST<\/b><span style=\"font-weight: 400;\"> defines how\u00a0 API looks like. REST is \u201c<\/span><b>Representational State Transfer<\/b><span style=\"font-weight: 400;\">\u201d. There are rules followed by the developers for creating an\u00a0 API. The URL is called a <\/span><b>Request <\/b><span style=\"font-weight: 400;\">while the data sent back to you is called a <\/span><b>Response<\/b><span style=\"font-weight: 400;\"> from the server<\/span><span style=\"font-weight: 400;\">.<\/span><\/p>\n<h4><b>Some Request Methods are :<\/b><\/h4>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">GET: Used to get a response from a server.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">POST: Used to create new data on the server.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">PUT: Used to update data into the server.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">DELETE: Used to delete data from the server.<\/span><\/li>\n<\/ul>\n<p><b>Some Benefits of API Testing are:<\/b><\/p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Early Testing which results in early feedback and better team productivity.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Language is independent of making the verification of data fast and stable.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Faster Releases as compared to UI Testing.<\/span><\/li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">High Coverage of Testing.<\/span><\/li>\n<\/ul>\n<h4><b>Steps for Testing REST API:<\/b><\/h4>\n<p><b>Step 1)<\/b><span style=\"font-weight: 400;\">: Install Postman and after installation launch the app.<\/span><\/p>\n<p><b>Step 2)<\/b><span style=\"font-weight: 400;\">: Enter the API\u00a0 URL in the URL textbox.<\/span><\/p>\n<p><b>Step 3)<\/b><span style=\"font-weight: 400;\">: Select the Http method for every API you hit- e.g. POST<\/span><\/p>\n<p><b>Step 4)<\/b><span style=\"font-weight: 400;\">: Provide Headers details, in the Headers section.\u00a0<\/span><\/p>\n<p><b>Step 5)<\/b><span style=\"font-weight: 400;\">: Now open the Body tab and select raw.<\/span><\/p>\n<p><b>Step 6)<\/b><span style=\"font-weight: 400;\">:Enter the request data in JSON format.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0e.g. {&#8220;key1&#8243;:&#8221;value1&#8243;,&#8221;key2&#8243;:&#8221;value2&#8221;}.<\/span><\/p>\n<p><b>Step 7)<\/b><span style=\"font-weight: 400;\">: Click the send button and observe the response in the body.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">For Web API Testing, we check response code, a response message, and a response body.<\/span><\/p>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"wp-image-5910 aligncenter\" style=\"margin-top: 0.857143rem; margin-bottom: 0.857143rem;\" src=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Screenshot-5-300x189.png\" alt=\"\" width=\"452\" height=\"285\" srcset=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Screenshot-5-300x189.png 300w, https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Screenshot-5-768x485.png 768w, https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Screenshot-5-1024x646.png 1024w, https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Screenshot-5-624x394.png 624w, https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Screenshot-5.png 1044w\" sizes=\"(max-width: 452px) 100vw, 452px\" \/><\/p>\n<p><b>Below are some response codes:<\/b><\/p>\n<table>\n<tbody>\n<tr>\n<td><b>Code<\/b><\/td>\n<td><b>Status<\/b><\/td>\n<td><b>Description<\/b><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">200<\/span><\/td>\n<td><span style=\"font-weight: 400;\">OK<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The request was successfully completed.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">201<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Created<\/span><\/td>\n<td><span style=\"font-weight: 400;\">A new resource was successfully created.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">400<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Bad Request<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The request was invalid.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">401<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Unauthorized<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The request did not include an authentication token or the authentication token expired.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">403<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Forbidden<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The client did not have permission to access the requested resource.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">404<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Not Found<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The requested resource was not found.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">500<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Internal Server Error<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The request was not completed due to an internal error on the server-side.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400;\">503<\/span><\/td>\n<td><span style=\"font-weight: 400;\">Service Unavailable<\/span><\/td>\n<td><span style=\"font-weight: 400;\">The server was unavailable.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4><b>Conclusion:<\/b><\/h4>\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">API testing is very important in the application. If API Testing is not done properly it can cause problems in the\u00a0 API application and calling the API application. It is a very crucial part of the software testing life cycle.<\/span><\/p>\n<p>You can also read our blog on testing.<\/p>\n<p><strong>1:\u00a0<a href=\"https:\/\/www.innovationm.com\/blog\/the-complete-process-of-update-testing\/\">The Complete Process of Update Testing<\/a><\/strong><\/p>\n<p><strong>2:<\/strong>\u00a0<strong><a href=\"https:\/\/www.innovationm.com\/blog\/how-to-make-each-round-of-testing-count\/\">How to Make Each Round of Testing Count?<\/a><\/strong><\/p>\n<p><strong>3:<\/strong>\u00a0<strong><a href=\"https:\/\/www.innovationm.com\/blog\/the-complete-guide-to-mobile-application-testing\/\">The Complete Guide to Mobile Application Testing<\/a><\/strong><\/p>\n<p>InnovationM is a globally renowned\u00a0<a href=\"https:\/\/www.innovationm.com\/mobile-app-development-company\">Mobile app development company in India<\/a>\u00a0that caters to a strong &amp; secure <a href=\"https:\/\/www.innovationm.com\/android-app-development\">Android app development<\/a>, <a href=\"https:\/\/www.innovationm.com\/ios-app-development\">iOS app development<\/a>, hybrid app development services. Our commitment &amp; engagement towards our target gives us brighter in the world of technology and has led us to establish success stories consecutively which makes us the\u00a0<a href=\"https:\/\/www.innovationm.com\/web-design-and-development-company\">best Web Design and Development Company in Delhi NCR<\/a>.<\/p>\n<p>Thank you for taking out the time to read the blog.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview: API stands for \u201cApplication Programming Interface\u201d. It is a program that allows the client and servers to talk to each other.\u00a0 REST defines how\u00a0 API looks like. REST is \u201cRepresentational State Transfer\u201d. There are rules followed by the developers for creating an\u00a0 API. The URL is called a Request while the data sent back [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":5921,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[71,7],"tags":[484,487,488,489,486,204,485],"class_list":["post-5909","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mobile","category-mobile-testing","tag-api-testing","tag-api-testing-checklist","tag-application-programming-interface-testing","tag-application-programming-interface-testing-checklist","tag-rest-api-testing-checklist","tag-testing","tag-the-rest-api-testing-checklist"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The REST API Testing Checklist - InnovationM - Blog<\/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.innovationm.com\/blog\/the-rest-api-testing-checklist\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The REST API Testing Checklist - InnovationM - Blog\" \/>\n<meta property=\"og:description\" content=\"Overview: API stands for \u201cApplication Programming Interface\u201d. It is a program that allows the client and servers to talk to each other.\u00a0 REST defines how\u00a0 API looks like. REST is \u201cRepresentational State Transfer\u201d. There are rules followed by the developers for creating an\u00a0 API. The URL is called a Request while the data sent back [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/\" \/>\n<meta property=\"og:site_name\" content=\"InnovationM - Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-13T07:24:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Api-checklist.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1141\" \/>\n\t<meta property=\"og:image:height\" content=\"634\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InnovationM Admin\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InnovationM Admin\" \/>\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.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/\"},\"author\":{\"name\":\"InnovationM Admin\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"headline\":\"The REST API Testing Checklist\",\"datePublished\":\"2020-04-13T07:24:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/\"},\"wordCount\":470,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/Api-checklist.png\",\"keywords\":[\"API testing\",\"API Testing Checklist\",\"Application Programming Interface Testing\",\"Application Programming Interface testing Checklist\",\"REST API Testing Checklist\",\"Testing\",\"The REST API Testing Checklist\"],\"articleSection\":[\"Mobile\",\"Mobile Testing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/\",\"name\":\"The REST API Testing Checklist - InnovationM - Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/Api-checklist.png\",\"datePublished\":\"2020-04-13T07:24:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/Api-checklist.png\",\"contentUrl\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/Api-checklist.png\",\"width\":1141,\"height\":634,\"caption\":\"The REST API Testing Checklist\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/the-rest-api-testing-checklist\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The REST API Testing Checklist\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/\",\"name\":\"InnovationM - Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/#\\\/schema\\\/person\\\/a831bf4602d69d1fa452e3de0c8862ed\",\"name\":\"InnovationM Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g\",\"caption\":\"InnovationM Admin\"},\"sameAs\":[\"http:\\\/\\\/www.innovationm.com\\\/\"],\"url\":\"https:\\\/\\\/www.innovationm.com\\\/blog\\\/author\\\/innovationmadmin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The REST API Testing Checklist - InnovationM - Blog","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.innovationm.com\/blog\/the-rest-api-testing-checklist\/","og_locale":"en_US","og_type":"article","og_title":"The REST API Testing Checklist - InnovationM - Blog","og_description":"Overview: API stands for \u201cApplication Programming Interface\u201d. It is a program that allows the client and servers to talk to each other.\u00a0 REST defines how\u00a0 API looks like. REST is \u201cRepresentational State Transfer\u201d. There are rules followed by the developers for creating an\u00a0 API. The URL is called a Request while the data sent back [&hellip;]","og_url":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/","og_site_name":"InnovationM - Blog","article_published_time":"2020-04-13T07:24:28+00:00","og_image":[{"width":1141,"height":634,"url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Api-checklist.png","type":"image\/png"}],"author":"InnovationM Admin","twitter_misc":{"Written by":"InnovationM Admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#article","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/"},"author":{"name":"InnovationM Admin","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"headline":"The REST API Testing Checklist","datePublished":"2020-04-13T07:24:28+00:00","mainEntityOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/"},"wordCount":470,"commentCount":0,"image":{"@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Api-checklist.png","keywords":["API testing","API Testing Checklist","Application Programming Interface Testing","Application Programming Interface testing Checklist","REST API Testing Checklist","Testing","The REST API Testing Checklist"],"articleSection":["Mobile","Mobile Testing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/","url":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/","name":"The REST API Testing Checklist - InnovationM - Blog","isPartOf":{"@id":"https:\/\/www.innovationm.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#primaryimage"},"image":{"@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#primaryimage"},"thumbnailUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Api-checklist.png","datePublished":"2020-04-13T07:24:28+00:00","author":{"@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed"},"breadcrumb":{"@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#primaryimage","url":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Api-checklist.png","contentUrl":"https:\/\/www.innovationm.com\/blog\/wp-content\/uploads\/2020\/04\/Api-checklist.png","width":1141,"height":634,"caption":"The REST API Testing Checklist"},{"@type":"BreadcrumbList","@id":"https:\/\/www.innovationm.com\/blog\/the-rest-api-testing-checklist\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.innovationm.com\/blog\/"},{"@type":"ListItem","position":2,"name":"The REST API Testing Checklist"}]},{"@type":"WebSite","@id":"https:\/\/www.innovationm.com\/blog\/#website","url":"https:\/\/www.innovationm.com\/blog\/","name":"InnovationM - Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.innovationm.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.innovationm.com\/blog\/#\/schema\/person\/a831bf4602d69d1fa452e3de0c8862ed","name":"InnovationM Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5c99d9eece9dfbc82297cf34ddd58e9fe05bb52fe66c8f6bf6c0a45bfb6d7629?s=96&r=g","caption":"InnovationM Admin"},"sameAs":["http:\/\/www.innovationm.com\/"],"url":"https:\/\/www.innovationm.com\/blog\/author\/innovationmadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/5909","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/comments?post=5909"}],"version-history":[{"count":0,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/posts\/5909\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media\/5921"}],"wp:attachment":[{"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/media?parent=5909"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/categories?post=5909"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.innovationm.com\/blog\/wp-json\/wp\/v2\/tags?post=5909"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}