Translations:User API guide/47/en
Code example of getting services list
$services = $client->getEventList(); // returns array(array( // 'id' => 1, - service id // 'name' => 'Service 1', - service's name // 'description' => 'Describe your service...', - service description // 'duration' => 60, - service duration // 'hide_duration' => 0, - Hide duration to clients flag, // 'picture' => null, - file name of picture or null // 'picture_path' => '/uploads/apidemo/event__picture/small/', - full path to picture, // 'position' => 1 - service position // 'is_active' => 1, - the service is activated // 'is_public' => 1, - the service is allowed to book by clients // ), ...)