This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Description
Hi everyone,
I have been trying to access the log files of a domain for a while now, but since there is no existing function for it I'm using the invokeGet function. However it looks like either the request isn't being executed correctly or I'm using the wrong function.
A bit of code, I tried the SHOW_LOG
command taken from the URL but also the LOG_VIEWER
taken from the DA website. (https://www.directadmin.com/features.php?id=1360) Both return the same result.
DirectAdmin::connectReseller(env('PANEL_HOST'), env('PANEL_USER'), env('PANEL_PASSWORD'))
->impersonateUser($userName)
->invokeGet('SHOW_LOG', [
'domain' => $domainName,
'type' => 'log',
]);
DirectAdmin API returned text/html to GET /CMD_API_SHOW_LOG containing
You cannot execute that command
The request you've made cannot be executed because it does not exist in your authority level
I'm not sure if I this is related to the DirectAdmin API or this package, but I'm hoping someone can help me. :)