# Delete Guidance By Id DELETE https://fai.buildwithfern.com/guidance/{domain}/{guidance_id} Reference: https://buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/guidance/delete-guidance-by-id ## OpenAPI Specification ```yaml openapi: 3.1.1 info: title: Delete Guidance By Id version: endpoint_guidance.delete_guidance_by_id paths: /guidance/{domain}/{guidance_id}: delete: operationId: delete-guidance-by-id summary: Delete Guidance By Id tags: - - subpackage_guidance parameters: - name: domain in: path required: true schema: type: string - name: guidance_id 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/DeleteGuidanceResponse' '422': description: Validation Error content: {} components: schemas: DeleteGuidanceResponse: type: object properties: success: type: boolean description: Whether the guidance document was successfully deleted required: - success ```