I have JQL query:
project in ("PCCC - Project Columbus Cloud Conversion", "Core Procurement") AND issuetype = Feature AND Verifier in (username1,username2)
I am trying to convert rest api to get same search results as similar to jql query:
But search results is not getting based on issue type='feature'.
Thank you alexy.i want also restapi for login jira with username/pwd.
Can you tell me how to use restapi for jira login?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can pass authentication data either with the rest/2/search REST call. You can find more info here:
https://developer.atlassian.com/server/jira/platform/basic-authentication/
Or you can login before sending the rest/2/search. You can find more info here:
https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-cookie-based-authentication/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.