POST api/Common/GetPollWithLinkId

Request Information

URI Parameters

None.

Body Parameters

GetPollWithLinkIdInput
NameDescriptionTypeAdditional information
LinkId

string

None.

Request Formats

application/json, text/json

Sample:
{
  "LinkId": "sample string 1"
}

application/xml, text/xml

Sample:
<Common.GetPollWithLinkIdInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SurveyApi.Models">
  <LinkId>sample string 1</LinkId>
</Common.GetPollWithLinkIdInput>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'GetPollWithLinkIdInput'.

Response Information

Resource Description

ResponseModel
NameDescriptionTypeAdditional information
Successful

boolean

None.

Status

integer

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Successful": true,
  "Status": 2,
  "Message": "sample string 3",
  "Data": {}
}

application/xml, text/xml

Sample:
<Common.ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SurveyApi.Models">
  <Data />
  <Message>sample string 3</Message>
  <Status>2</Status>
  <Successful>true</Successful>
</Common.ResponseModel>