Skip to main content
Version: Stable

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

config/Security.php

/** 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;