Kernel::GenericInterface::Operation::Link::LinkDelete

NAME

Kernel::GenericInterface::Operation::Link::LinkDelete – GenericInterface LinkDelete Operation backend

PUBLIC INTERFACE

Run()

perform LinkDelete Operation.

    my $Result = $OperationObject->Run(
        Data => {
            UserLogin => 'some agent login',    # UserLogin or SessionID is
                                                #   required
            SessionID => 123,

            Password  => 'some password',       # if UserLogin is sent then Password is required

            LinkID    => '123'                  # optional

            Object1   => 'Ticket',              # required
            Key1      => '321',                 # required
            Object2   => 'FAQ',                 # required
            Key2      => '321',                 # required
            Type      => 'ParentChild',         # required
        },
    );

    $Result = {
        Success      => 1,                      # 0 or 1
        ErrorMessage => '',                     # In case of an error
        Data         => {
            Success => 1,                       # 0 or 1
        },
    };
Scroll to Top