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

# Update project status

> Update project status.

<Warning>
  **Deprecated:** This is a **v1** endpoint and is deprecated. Please use the
  [v2 API](/getting-started/introduction) instead. v1 endpoints will be removed
  in a future release.
</Warning>

<Info>Replace `{your-subdomain}` with your workspace's subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled-v1/projects.yaml POST /projects/update_status
openapi: 3.0.3
info:
  title: NeetoInvoice APIs
  version: 1.0.0
servers:
  - description: NeetoInvoice APIs
    url: https://{your-subdomain}.neetoinvoice.com/api/external/v1
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
paths:
  /projects/update_status:
    post:
      tags:
        - Projects
      summary: Update project status
      description: Update project status.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/project_status_update_request'
      responses:
        '200':
          description: OK - Request succeeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/project_status_update_response'
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string
        default: your-api-key
  schemas:
    project_status_update_request:
      type: object
      required:
        - project_ids
        - status
        - email
      properties:
        project_ids:
          type: array
          description: >-
            Array of project IDs to update status for. Refer to [Getting the
            Project ID](/getting-started/getting-project-id) section for
            detailed instructions.
          items:
            type: string
            format: uuid
          example:
            - 71f70673bc9d5da257b1
            - d7d528165ae68ad3d1db
        status:
          type: string
          enum:
            - active
            - archived
          description: New status for the projects.
          example: archived
        email:
          type: string
          format: email
          description: Email of the user performing the status update.
          example: john@example.com
        filter:
          type: object
          description: Optional filter parameters for bulk status updates.
          properties:
            status:
              type: string
              enum:
                - active
                - archived
              description: Filter projects by current status.
              example: active
            consider_all_projects:
              type: boolean
              description: Whether to consider all projects matching the filter criteria.
              example: false
    project_status_update_response:
      type: object
      properties:
        custom_message:
          type: string

````