POST api/TestNoti
Request Information
URI Parameters
None.
Body Parameters
SendNotificationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| THMsg | string |
None. |
|
| ENMsg | string |
None. |
|
| EmailList | Collection of SendNotificationResponseModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"THMsg": "sample string 1",
"ENMsg": "sample string 2",
"EmailList": [
{
"UserEmail": "sample string 1"
},
{
"UserEmail": "sample string 1"
}
]
}
application/xml, text/xml
Sample:
<SendNotificationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sirius_Api.Models">
<ENMsg>sample string 2</ENMsg>
<EmailList>
<SendNotificationResponse.SendNotificationResponseModel>
<UserEmail>sample string 1</UserEmail>
</SendNotificationResponse.SendNotificationResponseModel>
<SendNotificationResponse.SendNotificationResponseModel>
<UserEmail>sample string 1</UserEmail>
</SendNotificationResponse.SendNotificationResponseModel>
</EmailList>
<THMsg>sample string 1</THMsg>
</SendNotificationResponse>
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.