Development Guides Home >> Guide to the LiveAPI System
Guide to the LiveAPI System - LiveAPI Methods
The LiveAPI system uses the following methods to interact with cPanel & WHM. Use these methods with either the LiveAPI PHP Class or the LiveAPI Perl Module.
- For more information about methods in PHP classes, read php.net's Classes and Objects documentation .
- For more information about methods in Perl, read perl.org's perlobj documentation .
Methods
The LiveAPI system includes the following methods to interact with cPanel & WHM:
-
api()
— Theapi()
method executes a cPanel API 1 or cPanel API 2 function. -
api1()
— Theapi1()
function executes a cPanel API 1 function. For use information and examples, read our Guide to cPanel API 1 documentation. -
api2()
— Theapi2()
function executes a cPanel API 2 function. For use information and examples, read our Guide to cPanel API 2 documentation. -
cpanelfeature()
— Thecpanelfeature()
method is a wrapper for the feature tag, which checks whether the authenticated user has access to a feature. -
cpanelif()
— Thecpanelif()
method is a wrapper for thecpanelif
tag, which evaluates a cPanel variable or logic operator. -
cpanelprint()
— Thecpanelprint()
method returns a cPanel variable's value. We deprecated this method in. -
debug_log()
— Thedebug_log()
method writes data to the debugging log file. -
debug_log_json()
— Thedebug_log_json()
method writes JSON data to the debugging log file. -
end()
— Theend()
method deconstructs theCpanel::LiveAPI
object and closes the connection to cPanel & WHM. -
exec()
— Theexec()
method executes a cPanel tag. -
fetch()
— Thefetch()
method is a wrapper to return a hash reference from thecpanelprint()
function, which retrieves a cPanel variable. We deprecated this method. -
footer()
— Thefooter()
method calls the cPanel interface's footer. -
get_debug_level()
— Theget_debug_level()
method retrieves the current debug level. -
get_debug_log()
— Theget_debug_log()
method retrieves the debug log file's absolute path and filename. -
get_result()
— Theget_result()
method fetches the most recent data result node for cPanel API 1 and cPanel API 2 functions. This method is for the LiveAPI PHP Class only . -
header()
— Theheader()
method calls the cPanel interface's header. -
new()
— Thenew()
method instantiates theCpanel::LiveAPI
object. -
set_debug()
— Theset_debug()
method sets the amount of debug information to store in LiveAPI's debug log file. -
uapi()
— Theuapi()
function executes a UAPI function. For use information and examples, read our Guide to UAPI .