provider JQL POST
/rest/api/3/jql/parse @utdk/jira
/rest/api/3/jql/parse Parse JQL query
Parses and validates JQL queries.
Validation is performed in context of the current user.
This operation can be accessed anonymously.
**[Permissions](#permissions) required:** None.
- validation query required
- How to validate the JQL query and treat the validation results. Validation options include: * `strict` Returns all errors. If validation fails, the query structure is not returned. * `warn` Returns all errors. If validation fails but the JQL query is correctly formed, the query structure is returned. * `none` No validation is performed. If JQL query is correctly formed, the query structure is returned.
- enum: strict, warn, none
Try it
Authentication
Configure credentials for The Jira Cloud platform REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import jira from '@utdk/jira';
await jira.parsejqlqueries({
"validation": "strict"
})