> ## 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.

# Create Page With Markdown



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#NOTION_CREATE_PAGE_WITH_MARKDOWN
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_CREATE_PAGE_WITH_MARKDOWN:
    post:
      summary: Create Page With Markdown
      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_CREATE_PAGE_WITH_MARKDOWN
                parameters:
                  type: object
                  properties:
                    parent:
                      type: object
                      description: >-
                        Parent : The parent page or database where the new page
                        is inserted, represented as a JSON object with a page_id
                        or database_id key, and the corresponding ID. (example:
                        "{
                          "database_id":"{{DATABASE_ID}}"
                        }")
                      properties: {}
                    title:
                      type: string
                      description: >-
                        Title : The title of the page. Required if no properties
                        are provided. Ignored if properties are provided with
                        title.
                    properties:
                      type: object
                      description: >-
                        Properties : The values of the page’s properties. If the
                        parent is a database, then the schema must match the
                        parent database’s properties. If the parent is a page,
                        then the only valid object key is title. (example: "{
                          "title":[
                            {
                              "text":{
                                "content":"My Page"
                              }
                            }
                          ]
                        }")
                      properties: {}
                    markdownContent:
                      type: string
                      description: >-
                        Markdown Content : The content to create the page with,
                        in Markdown format. (example: "# My Page


                        This is the content of my page in **Markdown** format.


                        - List item 1

                        - List item 2")
                    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:
                    - parent
                    - title
                  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.

````