ContributionsMost RecentMost LikesSolutionsWhat is the Zephyr for JIRA Server REST api base URL? I am trying to test Zephyr for JIRA rest API using a JIRA Server trial installed on my local workstation. JIRA is running on http://localhost:8080 I referred the doc https://zephyrdocs.atlassian.net/wiki/spaces/DEVELOPER/pages/33095703/REST+API It clearly say the base URL for api requests is http://SERVER[:PORT]/jira/rest/zapi/latest So in my case I assume it should be http://localhost:8080/jira/rest/zapi/latest So using this as the base URL I tried to send a REST GET request as following http://localhost:8080/jira/rest/zapi/latest/zchart/issueStatuses?projectId=TEST I have a project with an ID called TEST. I sent this request using Postman with Basic Auth authorization credentials and I got a 404 NOT FOUND. I tried the same request on the browser while I logged in to JIRA but didn't succeed. Appreciate, if someone can give me an example of a correct REST call when JIRA running on http://localhost:8080 JIRA Server - Jira v8.13.2 Zephyr for JIRA - 5.6.5.56508907 Solved