> ## Documentation Index
> Fetch the complete documentation index at: https://bunnynet-cb9733c2-support-migration.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Edge Script



## OpenAPI

````yaml https://core-api-public-docs.b-cdn.net/docs/v3/compute.json delete /compute/script/{id}
openapi: 3.0.0
info:
  title: bunny.net Compute API
  description: >-
    <img src='https://bunny.net/v2/images/bunnynet-logo-dark.svg' style='width:
    200px;' alt='bunny.net Logo'>
                   Edge Scripts and Compute API documentation for bunny.net. This API provides endpoints for managing edge scripts, releases, secrets, variables, and other compute-related resources.
  termsOfService: https://bunny.net/tos
  contact:
    name: bunny.net
    url: https://docs.bunny.net
    email: support@bunny.net
  version: 1.0.0
servers:
  - url: https://api.bunny.net
    description: bunny.net API Server
security:
  - AccessKey: []
paths:
  /compute/script/{id}:
    delete:
      tags:
        - Edge Script
      summary: Delete Edge Script
      operationId: DeleteEdgeScriptEndpoint_Delete
      parameters:
        - name: id
          in: path
          required: true
          description: The ID of the script that will be deleted.
          schema:
            type: integer
            format: int64
          x-position: 1
        - name: deleteLinkedPullZones
          in: query
          description: >-
            Deletes all pull zones linked to this edge script if true, otherwise
            changes origin to landing page
          schema:
            type: boolean
            default: false
          x-position: 2
      responses:
        '204':
          description: The script was successfully deleted.
        '400':
          description: Failed deleting the script. See error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorData'
        '401':
          description: The request authorization failed
        '404':
          description: The script with the requested ID does not exist.
        '500':
          description: Internal Server Error
      security:
        - AccessKey:
            - User
            - UserApi
            - SubuserAPICompute
            - SubuserAPIDns
            - SubuserCompute
            - SubuserManage
            - SubuserAPIManage
        - bearer:
            - User
            - UserApi
            - SubuserAPICompute
            - SubuserAPIDns
            - SubuserCompute
            - SubuserManage
            - SubuserAPIManage
components:
  schemas:
    ApiErrorData:
      type: object
      additionalProperties: false
      properties:
        ErrorKey:
          type: string
          nullable: true
        Field:
          type: string
          nullable: true
        Message:
          type: string
          nullable: true
  securitySchemes:
    AccessKey:
      type: apiKey
      description: API Access Key authorization header
      name: AccessKey
      in: header
    bearer:
      type: apiKey
      description: Bearer token authorization header
      name: Authorization
      in: header

````