Typescript SDK Type Docs
    Preparing search index...

    Interface ResourceNotFoundError

    Returned when the resource addressed by the request URL does not exist.

    interface ResourceNotFoundError {
        code: "ResourceNotFound";
        message: string;
        resourceId: string;
        resourceIdentifier: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    code: "ResourceNotFound"

    Error identifier.

    message: string

    "The Resource with $resourceIdentifier $resourceId was not found."

    resourceId: string

    The actual identifier value.

    resourceIdentifier: string

    The identifier type used (e.g., id, key).