Get Pages

    This API fetches the meta information of all the pages present in a ManageEngine AppCreator application.

    Request URL

    https://<base_url>/api/v2/<account_owner_name>/<app_link_name>/pages

    Request method

    GET

    Header

    Authorization: ManageEngine-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf

    OAuth scope

    scope=ZohoCreator.meta.application.READ

    where,

    base_urlthe base URL of your AppCreator account
    For example, the base URL is either  https://host_name:port_number (learn more) or appcreatordemo.manageengine.com (hostname of the server where ManageEngine AppCreator is running).
    account_owner_namethe username of the AppCreator account's owner
    app_link_namethe link name of the application from which you want to fetch the form meta information
    Possible Errors

    Refer to this page for the list of error codes and messages.

    Sample Request

    Copiedcurl "https://appcreatordemo.manageengine.com/api/v2/jason18/zylker-store/pages"
    -X GET
    -H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"

    This sample request will fetch the meta information of all the pages present in the Zylker Store application.

    Sample Response

    Copied{
      "code": 3000,
      "pages": [
        {
          "display_name": "Assets Dashboard",
          "link_name": "Asset_Dashboard"
        },
        {
          "display_name": "Home",
          "link_name": "Home_Page"
        }
      ]
    }
    Back to Top