AutoBE
    Preparing search index...

    Interface AutoBeInterfaceEndpointErase

    Request to erase an endpoint.

    Use this when an endpoint should be removed from the generated set:

    • Duplicate functionality with another endpoint
    • Not derived from actual requirements (hallucinated)
    • Violates RESTful conventions or business rules
    • Security concern (exposes sensitive data inappropriately)
    • Over-engineering (unnecessary granularity)

    Michael

    Samchon

    interface AutoBeInterfaceEndpointErase {
        endpoint: IEndpoint;
        reason: string;
        type: "erase";
    }
    Index

    Properties

    Properties

    endpoint: IEndpoint

    The endpoint to remove.

    ⚠️ CRITICAL: Must be from the "Endpoints for Review" list provided above. DO NOT reference endpoints that are not in the provided list. Must match exactly (path + method).

    reason: string

    Reason for deletion.

    Explain why this endpoint should be removed and what issue it causes.

    type: "erase"

    Type discriminator indicating this is an erase operation.