surveys

Send

POST
Sends a survey on the specified channels.

Request

This endpoint expects an object.
email
objectRequired

Response

This endpoint returns a map from strings to any
POST
1curl -X POST https://api.devrev.ai/surveys.send \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "email": {
6 "body": "body",
7 "recipients": [
8 "recipients"
9 ],
10 "sender": "sender",
11 "subject": "subject"
12 }
13}'
200
Successful
1{
2 "string": {
3 "key": "value"
4 }
5}