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



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#GITHUB_CREATE_ISSUE
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/#GITHUB_CREATE_ISSUE:
    post:
      summary: Create Issue
      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: GITHUB_CREATE_ISSUE
                parameters:
                  type: object
                  properties:
                    owner:
                      type: string
                      description: >-
                        Owner : Specify the name of the account owner of the
                        associated repository for this Issue. (example: "abc")
                    repo:
                      type: string
                      description: >-
                        Repository : Specify the name of the associated
                        repository for this Issue.
                    title:
                      type: string
                      description: 'Issue Title : Specify the title of the issue to create.'
                    body:
                      type: string
                      description: >-
                        Issue Body : Specify the body contents of the issue to
                        create.
                    assignees:
                      type: string
                      description: >-
                        Assignees : Specify the assignee(s)' GitHub login as an
                        array of strings for this issue. (example:
                        "["octocat"]")
                  required:
                    - owner
                    - repo
                    - title
                  x-integration: github
              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.

````