List items from a group in a board

Hello there,

I am trying to list items as explained in the title. Here is the query on which I still don’t get anything except a 200 OK - “No query string was present” message.

"{\"query\":\"{boards(ids:507039455){groups(ids:\"duplicate_of_sso_extended__opt\"){items}}}\"}"

Hey @tomgoirand – try this:

"{\"query\":\"{boards(ids:507039455){groups(ids:\\\"duplicate_of_sso_extended__opt\\\"){items}}}\"}"

Since the group ID is inside the query string, you need to double-escape it with an extra 2 backslashes. Otherwise the first quote will be parsed as the end of the query string and our API will give you an error.

thanks! Working perfectly now!