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

# Delete log export configuration

> Stops exporting a function's logs and removes its destination configuration. Idempotent: deleting when nothing is configured succeeds.



## OpenAPI

````yaml /openapi/source/external/edge-compute/functions-observability.json delete /compute/funcs/{id}/logs/export
openapi: 3.1.0
info:
  title: Edge Compute Function Observability API
  description: >-
    Customer-facing Edge Compute function logs, metrics, deployment history, and
    ship inspection.
  version: '1.0'
  x-latency-category: responsive
servers:
  - url: https://api.telnyx.com/v2
security:
  - bearerAuth: []
paths:
  /compute/funcs/{id}/logs/export:
    delete:
      tags:
        - functions
      summary: Delete log export configuration
      description: >-
        Stops exporting a function's logs and removes its destination
        configuration. Idempotent: deleting when nothing is configured succeeds.
      operationId: DeleteComputeFunctionLogExport
      parameters:
        - name: id
          in: path
          required: true
          description: Function ID
          schema:
            type: string
      responses:
        '204':
          description: >-
            Log export configuration deleted, or none was configured
            (idempotent). No content is returned.
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
              examples:
                error:
                  value:
                    errors:
                      - code: '10020'
                        title: Unprocessable entity
                        detail: Request could not be processed.
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
              examples:
                error:
                  value:
                    errors:
                      - code: '10001'
                        title: Unauthorized
                        detail: Invalid or missing API key.
        '404':
          description: Function not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
              examples:
                error:
                  value:
                    errors:
                      - code: '10005'
                        title: Resource not found
                        detail: The requested resource or URL could not be found.
        '422':
          description: Invalid function ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
              examples:
                error:
                  value:
                    errors:
                      - code: '10020'
                        title: Unprocessable entity
                        detail: Request could not be processed.
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Errors'
              examples:
                error:
                  value:
                    errors:
                      - code: '10010'
                        title: Internal server error
                        detail: An unexpected error occurred.
components:
  schemas:
    Errors:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/Error'
    Error:
      type: object
      properties:
        code:
          type: string
        title:
          type: string
        detail:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````