Thank you for reaching out.
The error occurs because the API expects startDate and endDate as OData Edm.Date values, not regular JSON strings. In Microsoft Graph, these fields must be provided as date literals or using the SDK’s Date type rather than quoted strings. This is a serialization requirement, not a server-side bug. The official documentation confirms these properties are Edm.Date:
Reference
Ensure your request uses the correct type for these fields to avoid the conversion error.
Please let us know if you require any further assistance, we’re happy to help.
If you found this information useful, kindly mark this as "Accept Answer".