{"id":29550,"date":"2015-11-04T16:10:52","date_gmt":"2015-11-04T10:40:52","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=29550"},"modified":"2017-01-29T09:56:40","modified_gmt":"2017-01-29T04:26:40","slug":"jenkins-api-integration-trigger-job-remotely","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/","title":{"rendered":"Jenkins API Integration : Trigger Job Remotely via Jenkins API"},"content":{"rendered":"<p>Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls.<\/p>\n<p><strong>This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API.<\/strong><\/p>\n<p>1. \u00a0First, we need Jenkins API TOKEN which will be &#8216;configure&#8217; tab on Jenkins.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29595\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/d.png\" alt=\"d\" width=\"1309\" height=\"718\" \/><\/p>\n<p>2. \u00a0Generate the URL for Jenkins Job.<\/p>\n<p>Go to Jenkins website and\u00a0add &#8220;<strong>api\/json&#8221;<\/strong>\u00a0to any page.\u00a0If we get a JSON response on the browser, then that page can be accessed remotely. For converting it to readable format, use <strong>&#8220;api\/json?pretty=true&#8221;<\/strong><\/p>\n<p><code><em>jenkins_url\/some_page\/api\/json<\/em><\/code><\/p>\n<p>For example :<br \/>\n<code><\/code><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29593\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/b.png\" alt=\"b\" width=\"1306\" height=\"154\" \/><\/p>\n<p>3. Make <strong>&#8216;HTTP POST&#8217;<\/strong> request to Jenkins server.<\/p>\n<p>NOTE: Jenkins only supports &#8216;HTTP POST&#8217; request for remote requests.<\/p>\n<p>&#8216;HTTP POST&#8217; request can be of two types.<\/p>\n<p><strong>(A) Without parameters :\u00a0<\/strong><\/p>\n<p>URL FORMAT -&gt;\u00a0<em>jenkins_url\/job\/job_name\/build?token=TOKEN.<\/em><\/p>\n<p>For example :<br \/>\n<code><\/code><\/p>\n<p><strong>(B) Parameterized :<\/strong><\/p>\n<p>URL FORMAT -&gt; jenkins_url\/job\/job_name\/buildWithParameters?token=TOKEN&amp;parameter=VALUE<\/p>\n<p>For Example :<\/p>\n<p>[code language=&#8221;objc&#8221;]<br \/>\nhttp:\/\/jenkins.example.com\/view\/testing\/job\/sample_selenium_test\/buildWithParameters?token=YOUR_TOKEN&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;parameter1=VALUE1&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;parameter2=VALUE2[\/code]<\/p>\n<p>After this, we also need to add <strong>{key:value} pair authorization<\/strong> to the &#8216;HTTP POST&#8217; request. It will be in format<br \/>\n<strong>{auth: &#8220;jenkins_user_email:jenkins_user_password&#8221;}<\/strong>.<\/p>\n<p>Final request will look like..<\/p>\n<p><strong>Curl Request :\u00a0<\/strong><\/p>\n<p><code> curl -v -X POST jenkins_url\/job\/job_name\/buildWithParameters<br \/>\n--data token=your_token<br \/>\n--user jenkins_user_email:jenkins_user_password<br \/>\n--data-urlencode json= '{\"parameter1\":\"value1\", \"parameter2\":\"value2\"}'<br \/>\n<\/code><\/p>\n<p>Finally, we will get the response of &#8216;HTTP POST&#8217; request with property &#8216;statusCode&#8217; (201 for success, else for errors)<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29592\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/c.png\" alt=\"c\" width=\"1311\" height=\"459\" \/><\/p>\n<p>We have successfully triggered Jenkins job remotely. You may want to check it on Jenkins now.<br \/>\nWe also track the Job Status and Console remotely using Jenkins API which will be covered in my next blog.<br \/>\nStay tuned. \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. \u00a0First, we need Jenkins API TOKEN which will be &#8216;configure&#8217; tab [&hellip;]<\/p>\n","protected":false},"author":268,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":125,"footnotes":""},"categories":[1818,1816],"tags":[1682,2725],"class_list":["post-29550","post","type-post","status-publish","format-standard","hentry","category-automation-testing-testing-2","category-testing-2","tag-jenkins","tag-jenkins-api"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be &#039;configure&#039; tab\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Aditya Thakur\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be &#039;configure&#039; tab\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be &#039;configure&#039; tab\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#article\",\"name\":\"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog\",\"headline\":\"Jenkins API Integration : Trigger Job Remotely via Jenkins API\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/aditya\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/11\\\/d.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#articleImage\"},\"datePublished\":\"2015-11-04T16:10:52+05:30\",\"dateModified\":\"2017-01-29T09:56:40+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":7,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#webpage\"},\"articleSection\":\"Automation Testing, Testing, Jenkins, Jenkins API\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/testing-2\\\/#listItem\",\"name\":\"Testing\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/testing-2\\\/#listItem\",\"position\":2,\"name\":\"Testing\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/testing-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#listItem\",\"name\":\"Jenkins API Integration : Trigger Job Remotely via Jenkins API\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#listItem\",\"position\":3,\"name\":\"Jenkins API Integration : Trigger Job Remotely via Jenkins API\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/testing-2\\\/#listItem\",\"name\":\"Testing\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/aditya\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/aditya\\\/\",\"name\":\"Aditya Thakur\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/06528637-0098-4749-a251-339633a73913_aditya.jpg\",\"width\":96,\"height\":96,\"caption\":\"Aditya Thakur\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/\",\"name\":\"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog\",\"description\":\"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be 'configure' tab\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/jenkins-api-integration-trigger-job-remotely\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/aditya\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/aditya\\\/#author\"},\"datePublished\":\"2015-11-04T16:10:52+05:30\",\"dateModified\":\"2017-01-29T09:56:40+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog","description":"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be 'configure' tab","canonical_url":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#article","name":"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog","headline":"Jenkins API Integration : Trigger Job Remotely via Jenkins API","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/aditya\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/d.png","@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#articleImage"},"datePublished":"2015-11-04T16:10:52+05:30","dateModified":"2017-01-29T09:56:40+05:30","inLanguage":"en-US","commentCount":7,"mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#webpage"},"articleSection":"Automation Testing, Testing, Jenkins, Jenkins API"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/testing-2\/#listItem","name":"Testing"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/testing-2\/#listItem","position":2,"name":"Testing","item":"https:\/\/2thenew.today\/blog\/category\/testing-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#listItem","name":"Jenkins API Integration : Trigger Job Remotely via Jenkins API"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#listItem","position":3,"name":"Jenkins API Integration : Trigger Job Remotely via Jenkins API","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/testing-2\/#listItem","name":"Testing"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/aditya\/#author","url":"https:\/\/2thenew.today\/blog\/author\/aditya\/","name":"Aditya Thakur","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/06528637-0098-4749-a251-339633a73913_aditya.jpg","width":96,"height":96,"caption":"Aditya Thakur"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#webpage","url":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/","name":"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog","description":"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be 'configure' tab","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/aditya\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/aditya\/#author"},"datePublished":"2015-11-04T16:10:52+05:30","dateModified":"2017-01-29T09:56:40+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog","og:description":"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be 'configure' tab","og:url":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Jenkins API Integration : Trigger Job Remotely via Jenkins API | TO THE NEW Blog","twitter:description":"Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1. First, we need Jenkins API TOKEN which will be 'configure' tab","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"29550","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 12:51:21","updated":"2024-02-29 08:41:23","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\/category\/testing-2\/\" title=\"Testing\">Testing<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tJenkins API Integration : Trigger Job Remotely via Jenkins API\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Testing","link":"https:\/\/2thenew.today\/blog\/category\/testing-2\/"},{"label":"Jenkins API Integration : Trigger Job Remotely via Jenkins API","link":"https:\/\/2thenew.today\/blog\/jenkins-api-integration-trigger-job-remotely\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/29550","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/268"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=29550"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/29550\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=29550"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=29550"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=29550"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}