-1

can someone help please???, so i just want to pass parameters in dialogflow url webhook, but i didn't know how??`//here is the url https://ef9c-41-141-192-237.ngrok.io/email/sendemail?toemail=$email&subject=$subject&text=$msg' $msg $email $subject are the parametrs , but the apps can not read the params enter image description here

here is my intent with params

  • please smeone answer mee??? – Mohamed Taha Elasri Jun 27 '22 at 17:49
  • Welcome to Stack Overflow! Posting a comment asking for an answer just a minute after you ask the question is unreasonable. Please be courteous of other people's time as well. The more you can provide to make your question as clear as possible to others, the better your chances are of getting a good answer. – Prisoner Jun 29 '22 at 14:45

1 Answers1

0

This is not how the Dialogflow URL webhook works.

The end point of the webhook URL is expected to be able to handle a POST in the Dialogflow JSON Request format and to reply using the response format. Your handler can get the parameters from that request object and then call the endpoint using the parameter format that you expect.

Prisoner
  • 49,922
  • 7
  • 53
  • 105