GET api/Influencer/GetInfluencerResponseForContest?contestId={contestId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
contestId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of InfluencerResponseDto
NameDescriptionTypeAdditional information
ContestId

globally unique identifier

None.

InfluencerName

string

None.

InfluencerImage

string

None.

QuestionThinks

string

None.

QuestionId

globally unique identifier

None.

Options

Collection of QuestionResponseOptions

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ContestId": "afc30c40-3f8a-42f2-bf5e-5e03fffe9f3c",
    "InfluencerName": "sample string 2",
    "InfluencerImage": "sample string 3",
    "QuestionThinks": "sample string 4",
    "QuestionId": "8d70edd8-c799-4dc8-a073-db387f3aa191",
    "Options": [
      {
        "OptionText": "sample string 1",
        "OptionId": "8b872141-e850-4117-8a53-8db0e659f53b",
        "Sequence": 2,
        "Name": "sample string 3",
        "NameImage": "sample string 4"
      },
      {
        "OptionText": "sample string 1",
        "OptionId": "8b872141-e850-4117-8a53-8db0e659f53b",
        "Sequence": 2,
        "Name": "sample string 3",
        "NameImage": "sample string 4"
      }
    ]
  },
  {
    "ContestId": "afc30c40-3f8a-42f2-bf5e-5e03fffe9f3c",
    "InfluencerName": "sample string 2",
    "InfluencerImage": "sample string 3",
    "QuestionThinks": "sample string 4",
    "QuestionId": "8d70edd8-c799-4dc8-a073-db387f3aa191",
    "Options": [
      {
        "OptionText": "sample string 1",
        "OptionId": "8b872141-e850-4117-8a53-8db0e659f53b",
        "Sequence": 2,
        "Name": "sample string 3",
        "NameImage": "sample string 4"
      },
      {
        "OptionText": "sample string 1",
        "OptionId": "8b872141-e850-4117-8a53-8db0e659f53b",
        "Sequence": 2,
        "Name": "sample string 3",
        "NameImage": "sample string 4"
      }
    ]
  }
]

application/xml, text/xml

Sample:
<ArrayOfInfluencerResponseDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.InfluencerModule.Model">
  <InfluencerResponseDto>
    <ContestId>afc30c40-3f8a-42f2-bf5e-5e03fffe9f3c</ContestId>
    <InfluencerImage>sample string 3</InfluencerImage>
    <InfluencerName>sample string 2</InfluencerName>
    <Options xmlns:d3p1="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.CustomerResponseMoule.Model">
      <d3p1:QuestionResponseOptions>
        <d3p1:Name>sample string 3</d3p1:Name>
        <d3p1:NameImage>sample string 4</d3p1:NameImage>
        <d3p1:OptionId>8b872141-e850-4117-8a53-8db0e659f53b</d3p1:OptionId>
        <d3p1:OptionText>sample string 1</d3p1:OptionText>
        <d3p1:Sequence>2</d3p1:Sequence>
      </d3p1:QuestionResponseOptions>
      <d3p1:QuestionResponseOptions>
        <d3p1:Name>sample string 3</d3p1:Name>
        <d3p1:NameImage>sample string 4</d3p1:NameImage>
        <d3p1:OptionId>8b872141-e850-4117-8a53-8db0e659f53b</d3p1:OptionId>
        <d3p1:OptionText>sample string 1</d3p1:OptionText>
        <d3p1:Sequence>2</d3p1:Sequence>
      </d3p1:QuestionResponseOptions>
    </Options>
    <QuestionId>8d70edd8-c799-4dc8-a073-db387f3aa191</QuestionId>
    <QuestionThinks>sample string 4</QuestionThinks>
  </InfluencerResponseDto>
  <InfluencerResponseDto>
    <ContestId>afc30c40-3f8a-42f2-bf5e-5e03fffe9f3c</ContestId>
    <InfluencerImage>sample string 3</InfluencerImage>
    <InfluencerName>sample string 2</InfluencerName>
    <Options xmlns:d3p1="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.CustomerResponseMoule.Model">
      <d3p1:QuestionResponseOptions>
        <d3p1:Name>sample string 3</d3p1:Name>
        <d3p1:NameImage>sample string 4</d3p1:NameImage>
        <d3p1:OptionId>8b872141-e850-4117-8a53-8db0e659f53b</d3p1:OptionId>
        <d3p1:OptionText>sample string 1</d3p1:OptionText>
        <d3p1:Sequence>2</d3p1:Sequence>
      </d3p1:QuestionResponseOptions>
      <d3p1:QuestionResponseOptions>
        <d3p1:Name>sample string 3</d3p1:Name>
        <d3p1:NameImage>sample string 4</d3p1:NameImage>
        <d3p1:OptionId>8b872141-e850-4117-8a53-8db0e659f53b</d3p1:OptionId>
        <d3p1:OptionText>sample string 1</d3p1:OptionText>
        <d3p1:Sequence>2</d3p1:Sequence>
      </d3p1:QuestionResponseOptions>
    </Options>
    <QuestionId>8d70edd8-c799-4dc8-a073-db387f3aa191</QuestionId>
    <QuestionThinks>sample string 4</QuestionThinks>
  </InfluencerResponseDto>
</ArrayOfInfluencerResponseDto>