1

I would like to translate the following JQL query for an REST API call : project=XX AND component IN ("SomeTitle")

first part of the url would be:

/rest/api/2/search?jql=project=XX

but how do I set the component IN ("SomeTitle") in the url ? What operator do I need to use ?

Adil B
  • 14,635
  • 11
  • 60
  • 78
schweppes0x
  • 182
  • 1
  • 13

1 Answers1

2

Here's what that URL would look like:

/rest/api/2/search?jql=project=XX%20and%20component%20in%20(%22SomeTitle%22)
Adil B
  • 14,635
  • 11
  • 60
  • 78