Description
My MeetingParticipantLeft webhook endpoints don’t seem to be getting anything if I have them set up in a JWT app, but they do work in a webhook-only app. Set up the exact same way as the PartcipantJoined, which is working fine.
Error
I couldn’t get into the endpoint with signature of:
[HttpPost]
MeetingParticipantLeft([FromBody] ParticpantJoinedLeftModel model)
So I figured my model had some parsing issues, changed it to:
MeetingParticipantLeft([FromBody] string model)
and it gets in, but the string is null/empty.
If I change it to
MeetingParticipantLeft(string model)
…I don’t get in again, so I’m assuming RequestBody/FromBody is correct (especially since ParticipantJoined works fine)
Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT app. **just learned that if we do it from a webhook-only app this works. wth?
Which Endpoint/s?
webhook MeetingParticipantLeft calling my c# webapi endpoint
I mean I guess the answer is just to create a webhook-only app for this, but why does /Joined work from a JWT app but /Left does not?
Thanks!