Reputation: 1191
When registering a webhook via the SurveyMonkey API, one of the parameters is a subscription_url
. My question is: when SurveyMonkey fires the webhook, is it making GET
or POST
request to this URL?
Upvotes: 0
Views: 393
Reputation: 1191
I can confirm that SurveyMonkey will POST
to your API endpoint. My issue was that SurveyMonkey will do a HEAD
, before the POST
, to ensure your API responds. So, to fix my issue, I had to add a GET
endpoint that simply responds with a 200
.
Upvotes: 2