Skip to end of banner
Go to start of banner

How to enable Numbered Heading through REST API

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

This article explains how to enable page numbering through REST API.

Instructions

Follow the below steps.

  1. Create a Confluence page without enabling the Numbered Heading macro.

  2. Copy the page ID as per the screenshot.

  3. Go to the Postman or any REST API app (based on your environment).

  4. Add this REST endpoint link to the POST section of the tool.

    https://example.atlassian.net/wiki/api/v2/pages/XXXXXXXX/properties
  5. Change the page ID based on the specific Confluence page.

  6. Add this code in the Body section.

    {"key": "nl_avisi_nh",
     "value": {
                "isEnabled": true
        }
    }
  7. Click Send.

  8. Refresh the Confluence page and see the Numbered Heading is enabled.

  • No labels