Email Invitations
The developer page documents collectors using a single collector endpoint.
For email invitations, use collector type Email.
Allowed type Values
Web LinkEmailWebsite EmbeddingMobile SMS
Create Collector
- Method:
POST - URL:
https://api.surveyol.com/v1/survey/{surveyId}/collector
curl --request POST \
--url https://api.surveyol.com/v1/survey/f04e6345-dd11-4342-8975-0a718d853505/collector \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"type": "Email",
"title": "My Email"
}'
Manage Collector
- List:
GET https://api.surveyol.com/v1/survey/{surveyId}/collectors - View:
GET https://api.surveyol.com/v1/collector/{collectorId} - Update:
POST https://api.surveyol.com/v1/collector/{collectorId} - Delete:
DELETE https://api.surveyol.com/v1/collector/{collectorId}