go4cas
go4cas

Reputation: 1191

SurveyMonkey Webhooks - Request Type

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

Answers (1)

go4cas
go4cas

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

Related Questions