curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CONFLUENCE_SEARCH_SPACES' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "CONFLUENCE_SEARCH_SPACES",
"parameters": {
"limit": "<string>",
"filterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "ids",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"pageCursor": "<string>"
}
}
}
'curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CONFLUENCE_SEARCH_SPACES' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "CONFLUENCE_SEARCH_SPACES",
"parameters": {
"limit": "<string>",
"filterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "ids",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"pageCursor": "<string>"
}
}
}
'Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Limit : Maximum number of records to return in the result. Defaults to no limit. (example: "No limit")
A filter in disjunctive normal form: OR of AND groups of single conditions
Show child attributes
Top-level operator must be OR (DNF enforced)
OR Each item is an AND group (a conjunction of single conditions)
Show child attributes
Each group is an AND of single conditions
AND List of single conditions (AND together)
Show child attributes
ids, keys, type, status, labels, sort, description-format $stringExactlyMatches Value to compare against
Success
Was this page helpful?