Answer the question
In order to leave comments, you need to log in
How to get task due date via JIRA REST API?
You need to pull issue details from Jira (version 7.9) using PHP.
To do this, I send a request to '/rest/api/2/search?jql=project=' . $project, where $project is the project code. In response, I receive a JSON with a list of tasks, but the problem is that this data does not contain the completion date / due date of the task.
How to extract this information?
Answer the question
In order to leave comments, you need to log in
Through /rest/api/2/field you look for the required field (closing date?), then you execute requests to receive each issue, as they said in the first comment, and look for the required field.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question