cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CONFLUENCE_GET_PAGES_BY_LABEL' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "CONFLUENCE_GET_PAGES_BY_LABEL", "parameters": { "labelId": "<string>", "bodyFormat": "storage", "additionalFields": {}, "limit": "<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
Label ID : The ID of the label for which pages should be returned (example: "3178497")
Body Format : The content format types to be returned in the body field of the response
storage
atlas_doc_format
Additional Fields : Specify any other fields that should be updated in JSON below. For example, you may want to provide a sort order here. See the docs (https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-labels-id-pages-get) for available fields. (example: "{ "sort":"id" }")
Limit : Maximum number of records to return in the result. Defaults to no limit. (example: "No limit")
Pagination Parameters
Page Cursor
Success
Was this page helpful?