POST api/SurveyMonkeyIntegration/PostMSMQuestionnaireDownload
Request Information
URI Parameters
None.
Body Parameters
SurveyDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| SurveyId | string |
String length: inclusive between 0 and 8000 |
|
| CollectorId | string |
String length: inclusive between 0 and 8000 |
|
| SurveyCompleted | boolean |
None. |
|
| QuestionnaireStatus | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"SurveyId": "sample string 1",
"CollectorId": "sample string 2",
"SurveyCompleted": true,
"QuestionnaireStatus": 1
}
application/xml, text/xml
Sample:
<MSMSurveyMonkeyDTO.SurveyDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO"> <CollectorId>sample string 2</CollectorId> <QuestionnaireStatus>1</QuestionnaireStatus> <SurveyCompleted>true</SurveyCompleted> <SurveyId>sample string 1</SurveyId> </MSMSurveyMonkeyDTO.SurveyDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AsapResponseOfSurveyDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| message | string |
None. |
|
| jsonObj | SurveyDTO |
None. |
|
| totalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"message": "sample string 2",
"jsonObj": {
"SurveyId": "sample string 1",
"CollectorId": "sample string 2",
"SurveyCompleted": true,
"QuestionnaireStatus": 1
},
"totalCount": 3
}
application/xml, text/xml
Sample:
<AsapResponseOfMSMSurveyMonkeyDTO.SurveyDTO9DQd0Pqc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ASAP_BL.Common">
<isSuccess>true</isSuccess>
<jsonObj xmlns:d2p1="http://schemas.datacontract.org/2004/07/ASAP_BL.DTO">
<d2p1:CollectorId>sample string 2</d2p1:CollectorId>
<d2p1:QuestionnaireStatus>1</d2p1:QuestionnaireStatus>
<d2p1:SurveyCompleted>true</d2p1:SurveyCompleted>
<d2p1:SurveyId>sample string 1</d2p1:SurveyId>
</jsonObj>
<message>sample string 2</message>
<totalCount>3</totalCount>
</AsapResponseOfMSMSurveyMonkeyDTO.SurveyDTO9DQd0Pqc>