Typescript SDK Type Docs
    Preparing search index...

    Interface ReferencedResourceNotFoundError

    Returned when a resource referenced by a Reference or a ResourceIdentifier could not be found.

    interface ReferencedResourceNotFoundError {
        code: "ReferencedResourceNotFound";
        id?: string;
        key?: string;
        message: string;
        typeId: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    code: "ReferencedResourceNotFound"

    Error identifier.

    id?: string

    Unique identifier of the referenced resource, if known.

    key?: string

    User-defined unique identifier of the referenced resource, if known.

    message: string

    "The referenced object of type $typeId $id || key was not found. It either doesn't exist, or it can't be accessed from this endpoint (e.g., if the endpoint filters by store or customer account)."

    typeId: string

    Type of referenced resource.