You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
The goal is to retrieve all content from Confluence Cloud by type `page` and `label` containing `some-label` tag.
When searching Confluence using `cql` the query does return result set but does not include `metadata` (specifically `labels`), though `expand` key is explicitly passed to the query:
https://foobar.atlassian.net/wiki/rest/api/search/?expand=metadata.labels&cql=type=page&label="some-label"
What is the reason for `expand` being neglected? Or is the query itself misconfigured?
----------
I used Confluence Search API Reference
Can you try
https://foobar.atlassian.net/wiki/rest/api/search/?expand=metadata.labels&cql=label=some-label
This returns an error:
(obviously I'm using different value as a label tag, but the format is the same `foo-bar`
{ "statusCode": 400, "data": { "authorized": false, "valid": true, "errors": [], "successful": false }, "message": "com.atlassian.confluence.api.service.exceptions.BadRequestException: Could not parse cql : label=some-label"}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Stanisław Reduta This one worked for me.. give it a try if the problem is not resolved.
https://foobar.atlassian.net/wiki/rest/masterdetail/1.0/detailssummary/lines?cql=label=some-label
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.