# Delete All Code Records DELETE https://fai.buildwithfern.com/code/{domain}/delete-all Reference: https://buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/code/delete-all-code-records ## OpenAPI Specification ```yaml openapi: 3.1.1 info: title: Delete All Code Records version: endpoint_code.delete_all_code_records paths: /code/{domain}/delete-all: delete: operationId: delete-all-code-records summary: Delete All Code Records tags: - - subpackage_code parameters: - name: domain in: path required: true schema: type: string - name: Authorization in: header description: >- Bearer authentication of the form `Bearer `, where token is your auth token. required: true schema: type: string responses: '200': description: Successful Response content: application/json: schema: $ref: '#/components/schemas/DeleteCodeRecordResponse' '422': description: Validation Error content: {} components: schemas: DeleteCodeRecordResponse: type: object properties: success: type: boolean description: Whether the code was successfully deleted required: - success ```