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

# Remove user from project

> Remove a user from a specific project



## OpenAPI

````yaml /openapi.json delete /projects/{id}/users/{userId}
openapi: 3.0.0
info:
  title: Uptime Monitor API
  description: >-
    API documentation for the Uptime Monitor application. This API allows users
    to create and manage website monitors, perform checks, and view statistics.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.justanotheruptime.com
security: []
tags:
  - name: auth
    description: Authentication endpoints
  - name: projects
    description: Project management endpoints
  - name: monitors
    description: Monitor management endpoints
  - name: checks
    description: Check-related endpoints
  - name: statistics
    description: Monitor statistics endpoints
paths:
  /projects/{id}/users/{userId}:
    delete:
      tags:
        - Projects
      summary: Remove user from project
      description: Remove a user from a specific project
      operationId: ProjectController_removeUser
      parameters:
        - name: id
          required: true
          in: path
          description: Project ID
          schema:
            type: string
        - name: userId
          required: true
          in: path
          description: User ID to remove
          schema:
            type: string
      responses:
        '200':
          description: User successfully removed from project
        '401':
          description: Unauthorized
        '404':
          description: Project or user not found
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````