I am creating a google meeting invite using ical calendar in java. After creating event I need to get or set event id of the created event
Asked
Active
Viewed 331 times
-2
-
This is not a question, please clarify what your issue is – Joakim Danielson Oct 07 '19 at 10:43
-
currently, i am able to create events in java using ical calendar but I a want to get event id for that event after creating it – Ravi gupta Oct 07 '19 at 10:48
-
Update your question instead of (trying to) post additional information as comments. – Joakim Danielson Oct 07 '19 at 10:50
-
Hi i need to get event id while creating events in ical calander . in java – Ravi gupta Oct 07 '19 at 10:55
-
Welcome to stack please read https://stackoverflow.com/help/how-to-ask. Then edit your question showing enough of your code so that we can see the problem. and describe the problem in detail error messages ect. – Linda Lawton - DaImTo Oct 07 '19 at 12:41
1 Answers
0
After successfully creating an event, you will get the event object as a response. You can read it to get its ID.
If you want to know the ID of a previously created event, you can user the list method to search for it. You can see on the documentation the multiple fields that you can use for searching.

Jacques-Guzel Heron
- 2,480
- 1
- 7
- 16
-
Thanks for the reply. but I am creating an event using a ical calendar. in ical how to get event id for created event – Ravi gupta Oct 07 '19 at 13:16