Searching for issues We can use the search API available at http://example.com/rest/api/2/search with the JQL “created > -1d”. <?php //pull in login credentials and CURL access function require_once(“utils.php”); //create a payload that we can then pass to JIRA with JSON $jql = array( ‘jql’ => ‘created > -1d’ ); /*define a function that calls the…
Read More