I am trying to insert calendarList
using google calendar api v3.
The request body contains
conferenceProperties
which allows conferenceProperties.allowedConferenceSolutionTypes[]
as list {eventHangout,eventNamedHangout,hangoutsMeet}
.
When I tried to insert using any of the conferenceProperties.allowedConferenceSolutionTypes[]
, the request throws "400 bad request".
But fortunately it works, when the request doesn't contain conferenceProperties.allowedConferenceSolutionTypes[]
.
Why can't I select the "eventHangout" as conferenceProperties.allowedConferenceSolutionTypes[]
?
Error: 400 bad request
"domain": "global",
"reason": "invalid",
"message": "Invalid Value"
HTTP: POST
https://www.googleapis.com/calendar/v3/users/me/calendarList
request body:
{
"id": "XXX@group.calendar.google.com",
"kind": "calendar#calendarListEntry",
"summaryOverride": "",
"colorId": "18",
"backgroundColor": "#b99aff",
"foregroundColor": "#000000",
"selected": false,
"hidden": false,
"conferenceProperties": {
"allowedConferenceSolutionTypes": [
"eventHangout"
]
}
}