Kernel::GenericInterface::Operation::SolMan::RequestSystemGuid

NAME

Kernel::GenericInterface::Operation::SolMan::RequestSystemGuid – provides local system guid to solution manager

PUBLIC INTERFACE

new()

usually, you want to create an instance of this by using Kernel::GenericInterface::Operation->new();

Run()

Provide local system guid to remote SolMan system.

    my $Result = $InvokerObject->Run(
        Data => {},
    );

    $Result = {
        Success => 1,
        Data    => {
            LocalSystemGuid => 123ABC123ABC123ABC123ABC123ABC12',
        },
    };
Scroll to Top