Description
Hello,
I'm running a durable function with the human interaction pattern like in the human interaction example . I successfully raise the event in a separat azure function via a HTTP call according to the documentation. In line 22, $approvalEvent
, the return value of the Start-DurableExternalEventListener
is used as the input for the activity. I assume that that's the value of the body that's send with the HTTP-call to raise the event, although it is not actually used in the activity itself in the example. I managed to capture the message in the queue, and the body is in there under TaskMessage.Event.Input
. If I convert the $approvalEvent
to JSON, it is just "{}"
.
Is the message body not available in powershell or is there a cmdlet to query the data? The documentation is incomplete on this so far.
Please let me know if I can provide further information! Thank you!
Best regards,
Oliver