POST api/InteractionResponse/CreateAndSendEmail
Request Information
URI Parameters
None.
Body Parameters
InteractionResponseCreateAndSendEmailDto| Name | Description | Type | Additional information |
|---|---|---|---|
| InteractionId | integer |
None. |
|
| Subject | string |
None. |
|
| Body | string |
None. |
|
| Contacts | Collection of InteractionResponseContactDto |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"interactionId": 1,
"subject": "sample string 2",
"body": "sample string 3",
"contacts": [
{
"id": 1,
"deleted": true,
"contact": {
"name": "sample string 1",
"id": 2
}
},
{
"id": 1,
"deleted": true,
"contact": {
"name": "sample string 1",
"id": 2
}
}
]
}
text/plain
Sample:
{"interactionId":1,"subject":"sample string 2","body":"sample string 3","contacts":[{"id":1,"deleted":true,"contact":{"name":"sample string 1","id":2}},{"id":1,"deleted":true,"contact":{"name":"sample string 1","id":2}}]}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/plain
Sample:
Sample not available.