For Office 365 create draft reply message rest API '/messages/{message_id}/createreply' the required request body parameter is 'comment' as per the Office 365 documentation.
Office 365 create draft reply message
I tried to create a draft reply using 'POST /messages/{message_id}/createreply' API with payload as:
{ "Comment": "Fanny, Randi, would you name the group if the project is approved, please?" }
The API gives following error:
{ "error": { "code": "RequestBodyRead", "message": "The parameter 'Comment' in the request payload is not a valid parameter for the operation 'CreateReply'." } }
Is there anything wrong I'm doing or this is a known issue with Office 365 create draft reply API?