Configuration
Activation
Set active services $enabledServices
in the config/Api.php file:
/** List of active services. Available: dav, webservice */
public static $enabledServices = ['webservice'];
Create an API app
To determine what kind of services are to be active, add applications of the relevant type.
Add the services you want to use in the Web service - Applications admin panel.
Session lifetime configuration
/** Maximum session lifetime from the time it was created (in minutes) */
public static $apiLifetimeSessionCreate = 1440;
/** Maximum session lifetime since the last modification (in minutes) */
public static $apiLifetimeSessionUpdate = 240;