> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useparagon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Page



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#NOTION_UPDATE_PAGE
openapi: 3.0.0
info:
  title: ActionKit Tools API
  version: 1.0.0
servers:
  - url: https://actionkit.useparagon.com
    description: US Cloud
security: []
paths:
  /projects/{project_id}/tools/#NOTION_UPDATE_PAGE:
    post:
      summary: Update Page
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Your Paragon Project ID. You can copy your Project ID from your
              dashboard URL or by clicking Copy Project ID under the Environment
              switcher.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tool:
                  type: string
                  default: NOTION_UPDATE_PAGE
                parameters:
                  type: object
                  properties:
                    pageId:
                      type: string
                      description: >-
                        Page ID : Specify the ID of the Page to Update.
                        (example: "59833787-2cf9-4fdf-8782-e53db20768a5")
                    archived:
                      type: boolean
                      description: >-
                        Archived : Whether the page is archived (deleted). Set
                        to true to archive a page. Set to false to un-archive
                        (restore) a page.
                    properties:
                      type: object
                      description: >-
                        Properties : The property values to update for the page.
                        The keys are the names or IDs of the property and the
                        values are property values. If a page property ID is not
                        included, then it is not changed. (example: "{
                          "title":[
                            {
                              "text":{
                                "content":"My Page"
                              }
                            }
                          ]
                        }")
                      properties: {}
                    cover:
                      type: object
                      description: >-
                        Cover : The cover image of the new page, represented as
                        an file object
                        (https://developers.notion.com/reference/file-object).
                        (example: "{
                          "external":{
                            "url":"https://upload.wikimedia.org/wikipedia/commons/6/62/Tuscankale.jpg"
                          }
                        }")
                      properties: {}
                    icon:
                      type: object
                      description: >-
                        Icon : The icon of the new page. Either an emoji object
                        (https://developers.notion.com/reference/emoji-object)
                        or an external file object
                        (https://developers.notion.com/reference/file-object).
                        (example: "{
                          "emoji":"🥬"
                        }")
                      properties: {}
                  required:
                    - pageId
                  x-integration: notion
              required:
                - tool
                - parameters
      responses:
        '200':
          description: Success
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Your [Paragon User
        Token](/getting-started/installing-the-connect-sdk#setup) (JWT), which
        you can generate using your project's signing keys.

````