One of my colleagues tries to get read and write access to calendar entries (events) using the REST API as described on this page
REST API to create Team Calendar's events. | Confluence | Atlassian Documentation.
This explains in principle how this can be done (e.g. via 'curl').
The API also contains get/post/put methods that are based on the PYTHON-requests library. He has tried to implement the 'curl' call using these methods (especially get and put).
He would now like to use a call of the form xxx = wikipy.request(method=???,path='/rest/calendar-services/1.0/calendar/events.json',headers=????,data=????) which gives him read/write access to calendar events of a calendar with a given HEX-ID (and if necessary a given USER HEX-ID).
Can you help us with this?