POST api/DownloadSurveyMonkeyResponse/Run
Request Information
URI Parameters
None.
Body Parameters
SurveyDownloadDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
String length: inclusive between 0 and 8000 |
|
| Password | string |
String length: inclusive between 0 and 8000 |
|
| CorporationCode | string |
String length: inclusive between 0 and 100 |
|
| SurveyId | string |
String length: inclusive between 0 and 8000 |
|
| StartDate | string |
String length: inclusive between 0 and 8000 |
Request Formats
application/json, text/json
Sample:
{
"UserName": "sample string 1",
"Password": "sample string 2",
"CorporationCode": "sample string 3",
"SurveyId": "sample string 4",
"StartDate": "sample string 5"
}
application/xml, text/xml
Sample:
<MSMSurveyMonkeyDTO.SurveyDownloadDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO"> <CorporationCode>sample string 3</CorporationCode> <Password>sample string 2</Password> <StartDate>sample string 5</StartDate> <SurveyId>sample string 4</SurveyId> <UserName>sample string 1</UserName> </MSMSurveyMonkeyDTO.SurveyDownloadDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AsapResponseOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| message | string |
None. |
|
| jsonObj | string |
None. |
|
| totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"message": "sample string 2",
"jsonObj": "sample string 3",
"totalCount": 4
}
application/xml, text/xml
Sample:
<AsapResponseOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common"> <isSuccess>true</isSuccess> <jsonObj>sample string 3</jsonObj> <message>sample string 2</message> <totalCount>4</totalCount> </AsapResponseOfstring>