3 / 3
Nov 2020

Hi,

Is there any method or exist solution to write data to Egroupware Calendar with Api/REST API or other technique?
For example: other web application send an event data for user, like vacation period.

Thanks

Zoli

  • created

    Aug '20
  • last reply

    Nov '20
  • 2

    replies

  • 2.2k

    views

  • 3

    users

  • 3

    links

3 months later

Hi Zoli,

if you just need to schedule something in the calendar, then take a look at CalDAV.

If enabled and your user has sufficient permissions, you can access your own calendar like this:
http://<your_domain>/egroupware/groupdav.php/calendar

Access any other users calendar, if your user has sufficient perrmission to do so:
http://<your_domain>/egroupware/groupdav.php//calendar

In order to schedule a new event, you need to generate an ICS file and then submit it to groupdav.php using PUT method, for example using curl.

Here is an example in PHP:
https://trentrichardson.com/put-caldav-events-to-calendar-in-php.html40

For further details may be translate this detailed german how to:
CalDAV How To

I found this topic because I was looking for an egroupware (REST) API myself, because the CalDAV interface doesn’t seem like a good way to access a users meeting list for the current day. In order to achieve that, one has to the query string “?download” to the groupdav.php call, but this returns all appointments in the near feature.

Hope that helps.

Lars

I always do something like this in the forum in English:

image

Stefan