cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CONFLUENCE_GET_PAGE_BY_ID' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "CONFLUENCE_GET_PAGE_BY_ID", "parameters": { "pageId": "<string>", "bodyFormat": "storage", "getDraft": true, "versionNumber": "<string>", "additionalFields": {} } } '
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
Page ID : ID of the page (example: "3145729")
Body Format : The content format types to be returned in the body field of the response
storage
atlas_doc_format
Get Draft : Retrieve the draft version of this page. Defaults to false
Version Number : Allows you to retrieve a previously published version. Specify the previous version`s number to retrieve its details (example: "2")
Additional Fields : Specify any other fields that should be updated in JSON below. For example, you may want to provide a labels here. See the docs (https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-pages-id-get-request-Query%20parameters) for available fields. (example: "{ "include-labels": true }")
Success
Was this page helpful?