GET api/SurveyMonkeyIntegration/GetSurveys?q={q}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
q

string

Required

Body Parameters

None.

Response Information

Resource Description

AsapResponseOfSurveyMonkeySurveysDTO
NameDescriptionTypeAdditional information
isSuccess

boolean

None.

message

string

None.

jsonObj

SurveyMonkeySurveysDTO

None.

totalCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "message": "sample string 2",
  "jsonObj": {
    "per_page": 1,
    "total": 2,
    "data": [
      {
        "href": "sample string 1",
        "nickname": "sample string 2",
        "id": "sample string 3",
        "title": "sample string 4"
      },
      {
        "href": "sample string 1",
        "nickname": "sample string 2",
        "id": "sample string 3",
        "title": "sample string 4"
      }
    ],
    "page": 3
  },
  "totalCount": 3
}

application/xml, text/xml

Sample:
<AsapResponseOfSurveyMonkeySurveysDTOSyb8Zvtg 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.Common">
    <d2p1:data>
      <d2p1:SurveyMonkeySurveyDataDTO>
        <d2p1:href>sample string 1</d2p1:href>
        <d2p1:id>sample string 3</d2p1:id>
        <d2p1:nickname>sample string 2</d2p1:nickname>
        <d2p1:title>sample string 4</d2p1:title>
      </d2p1:SurveyMonkeySurveyDataDTO>
      <d2p1:SurveyMonkeySurveyDataDTO>
        <d2p1:href>sample string 1</d2p1:href>
        <d2p1:id>sample string 3</d2p1:id>
        <d2p1:nickname>sample string 2</d2p1:nickname>
        <d2p1:title>sample string 4</d2p1:title>
      </d2p1:SurveyMonkeySurveyDataDTO>
    </d2p1:data>
    <d2p1:page>3</d2p1:page>
    <d2p1:per_page>1</d2p1:per_page>
    <d2p1:total>2</d2p1:total>
  </jsonObj>
  <message>sample string 2</message>
  <totalCount>3</totalCount>
</AsapResponseOfSurveyMonkeySurveysDTOSyb8Zvtg>