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

# Set Issue Status



## OpenAPI

````yaml actionkit/openapi.json POST /projects/{project_id}/tools/#LINEAR_SET_ISSUE_STATUS
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/#LINEAR_SET_ISSUE_STATUS:
    post:
      summary: Set Issue Status
      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: LINEAR_SET_ISSUE_STATUS
                parameters:
                  type: object
                  properties:
                    issueId:
                      type: string
                      description: >-
                        Issue ID : Specify the Issue ID to update the status
                        for. (example: "90fbc706-18cd-42c9-ae66-6bd344cc8977")
                    statusId:
                      type: string
                      description: >-
                        Status ID : Specify the status ID to set. Use Get
                        Statuses by Team to discover valid IDs. (example:
                        "a9ae25f9-01d5-40bf-b485-7d2952d2d3b4")
                  required:
                    - issueId
                    - statusId
                  x-integration: linear
              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.

````