AutoBE
    Preparing search index...

    Interface AutoBeInterfaceEndpointCreate

    Request to create a new endpoint.

    Use this when you identify a missing endpoint that should exist based on requirements analysis. Common scenarios:

    • A required operation was accidentally omitted from initial generation
    • A use case requires an endpoint that wasn't initially identified
    • Review reveals gaps in API coverage for specific requirements

    Michael

    Samchon

    interface AutoBeInterfaceEndpointCreate {
        design: AutoBeInterfaceEndpointDesign;
        reason: string;
        type: "create";
    }
    Index

    Properties

    Properties

    The new endpoint to add.

    reason: string

    Reason for creating this endpoint.

    Explain which requirement this endpoint fulfills and why it was missing from the initial generation.

    type: "create"

    Type discriminator indicating this is a create operation.