POST api/Email/SendEmail
Request Information
URI Parameters
None.
Body Parameters
SendEmailBodyModel| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| therapist_name | string |
None. |
|
| patient_name | string |
None. |
|
| DOV | date |
None. |
|
| SOV | date |
None. |
|
| EOV | date |
None. |
|
| hha_name | string |
None. |
|
| pta_sign | string |
None. |
|
| patient_sign | string |
None. |
|
| coments | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"therapist_name": "sample string 2",
"patient_name": "sample string 3",
"DOV": "2025-12-11T16:04:42.2374626-06:00",
"SOV": "2025-12-11T16:04:42.2374626-06:00",
"EOV": "2025-12-11T16:04:42.2374626-06:00",
"hha_name": "sample string 7",
"pta_sign": "sample string 8",
"patient_sign": "sample string 9",
"coments": "sample string 10"
}
application/xml, text/xml
Sample:
<SendEmailBodyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GouldTherapy.Models"> <DOV>2025-12-11T16:04:42.2374626-06:00</DOV> <EOV>2025-12-11T16:04:42.2374626-06:00</EOV> <SOV>2025-12-11T16:04:42.2374626-06:00</SOV> <coments>sample string 10</coments> <hha_name>sample string 7</hha_name> <id>1</id> <patient_name>sample string 3</patient_name> <patient_sign>sample string 9</patient_sign> <pta_sign>sample string 8</pta_sign> <therapist_name>sample string 2</therapist_name> </SendEmailBodyModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.