POST api/SurveyMonkeyIntegration/PostMSMQuestionnaireReprocess

Request Information

URI Parameters

None.

Body Parameters

SurveyDTO
NameDescriptionTypeAdditional information
SurveyId

string

String length: inclusive between 0 and 8000

CollectorId

string

String length: inclusive between 0 and 8000

Request Formats

application/json, text/json

Sample:
{
  "SurveyId": "sample string 1",
  "CollectorId": "sample string 2"
}

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>
  <SurveyId>sample string 1</SurveyId>
</MSMSurveyMonkeyDTO.SurveyDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AsapResponseOfSurveyDTO
NameDescriptionTypeAdditional 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"
  },
  "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:SurveyId>sample string 1</d2p1:SurveyId>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfMSMSurveyMonkeyDTO.SurveyDTO9DQd0Pqc>