POST api/bifrost/Azure/TestSendMail
Request Information
URI Parameters
None.
Body Parameters
SendTestMailRQ| Name | Description | Type | Additional information |
|---|---|---|---|
| bodyContent | string |
None. |
|
| UserName | string |
None. |
|
| UserPassword | string |
None. |
|
| To | string |
None. |
|
| Port | integer |
None. |
|
| CC | string |
None. |
|
| BCC | string |
None. |
|
| From | string |
None. |
|
| Subject | string |
None. |
|
| Host | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"bodyContent": "sample string 1",
"UserName": "sample string 2",
"UserPassword": "sample string 3",
"To": "sample string 4",
"Port": 5,
"CC": "sample string 6",
"BCC": "sample string 7",
"From": "sample string 8",
"Subject": "sample string 9",
"Host": "sample string 10"
}
application/xml, text/xml
Sample:
<SendTestMailRQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model"> <BCC>sample string 7</BCC> <CC>sample string 6</CC> <From>sample string 8</From> <Host>sample string 10</Host> <Port>5</Port> <Subject>sample string 9</Subject> <To>sample string 4</To> <UserName>sample string 2</UserName> <UserPassword>sample string 3</UserPassword> <bodyContent>sample string 1</bodyContent> </SendTestMailRQ>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| guid | string |
None. |
|
| PNR | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2",
"guid": "sample string 3",
"PNR": "sample string 4"
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GT.AzrTravelApi.Model"> <IsSuccess>true</IsSuccess> <Message>sample string 2</Message> <PNR>sample string 4</PNR> <guid>sample string 3</guid> </Response>