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

# Delete Provider

> Delete a provider from the store (author only).

Cancels running builds, deletes source archives, removes all versions,
and deletes the Provider record. Does NOT clean up installations
at other tenants.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json delete /providers/{org}/{name}
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /providers/{org}/{name}:
    delete:
      tags:
        - providers
      summary: Delete Provider
      description: |-
        Delete a provider from the store (author only).

        Cancels running builds, deletes source archives, removes all versions,
        and deletes the Provider record. Does NOT clean up installations
        at other tenants.
      operationId: providers-delete_provider
      parameters:
        - name: org
          in: path
          required: true
          schema:
            type: string
            title: Org
        - name: name
          in: path
          required: true
          schema:
            type: string
            title: Name
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````