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

# Delete a project notification



## OpenAPI

````yaml /openapi/platform-api.yaml delete /projects/{project_id}/notifications/{notification_id}
openapi: 3.1.0
info:
  title: Versori Platform API
  version: 0.0.1
  license:
    name: UNLICENSED
servers:
  - description: Production
    url: https://platform.versori.com/api/v2
  - description: Staging
    url: https://platform-staging.versori.com/api/v2
  - description: Development
    url: http://localhost:8901
security:
  - bearerToken: []
  - cookie: []
paths:
  /projects/{project_id}/notifications/{notification_id}:
    parameters:
      - $ref: '#/components/parameters/project_id'
      - $ref: '#/components/parameters/env_id'
      - name: notification_id
        in: path
        required: true
        schema:
          type: string
          format: ulid
          x-go-type: ulid.ULID
          x-go-name: SchedulerID
          x-go-type-import:
            path: versori.dev/vergo/ulid
    delete:
      tags:
        - notifications
      summary: Delete a project notification
      operationId: DeleteProjectNotification
      responses:
        '204':
          description: Project notification deleted successfully
components:
  parameters:
    project_id:
      name: project_id
      in: path
      required: true
      schema:
        type: string
        format: ulid
        x-go-type: ulid.ULID
        x-go-name: ProjectID
        x-go-type-import:
          path: versori.dev/vergo/ulid
    env_id:
      name: env_id
      in: query
      required: false
      schema:
        type: string
  securitySchemes:
    bearerToken:
      description: >
        Bearer token authentication used by the Versori Platform. External
        consumers must provide an API key, however

        internal consumers must provide a JWT id_token issued by our IdP.
      type: http
      scheme: bearer
    cookie:
      description: Cookie authentication used by the Versori Platform.
      type: apiKey
      in: cookie
      name: cookie

````