GET api/Influencer/GetInfluencerList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of InfluencerDto
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

FirstName

string

None.

LastName

string

None.

InfluencerImage

string

None.

AccountId

globally unique identifier

None.

ContestId

globally unique identifier

None.

ContestName

string

None.

AccountName

string

None.

UserId

globally unique identifier

None.

Points

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "f500db60-c2bc-4b13-a6c5-1c8aabe9472b",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "InfluencerImage": "sample string 4",
    "AccountId": "839d5f89-1973-4b72-ae9d-0002046d859f",
    "ContestId": "807d0bdf-57ff-4484-b3ea-c242d6305fa9",
    "ContestName": "sample string 5",
    "AccountName": "sample string 6",
    "UserId": "ba6d7b59-465f-4d65-89da-638f1f0ee225",
    "Points": 1
  },
  {
    "Id": "f500db60-c2bc-4b13-a6c5-1c8aabe9472b",
    "FirstName": "sample string 2",
    "LastName": "sample string 3",
    "InfluencerImage": "sample string 4",
    "AccountId": "839d5f89-1973-4b72-ae9d-0002046d859f",
    "ContestId": "807d0bdf-57ff-4484-b3ea-c242d6305fa9",
    "ContestName": "sample string 5",
    "AccountName": "sample string 6",
    "UserId": "ba6d7b59-465f-4d65-89da-638f1f0ee225",
    "Points": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfInfluencerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.InfluencerModule.Model">
  <InfluencerDto>
    <AccountId>839d5f89-1973-4b72-ae9d-0002046d859f</AccountId>
    <AccountName>sample string 6</AccountName>
    <ContestId>807d0bdf-57ff-4484-b3ea-c242d6305fa9</ContestId>
    <ContestName>sample string 5</ContestName>
    <FirstName>sample string 2</FirstName>
    <Id>f500db60-c2bc-4b13-a6c5-1c8aabe9472b</Id>
    <InfluencerImage>sample string 4</InfluencerImage>
    <LastName>sample string 3</LastName>
    <Points>1</Points>
    <UserId>ba6d7b59-465f-4d65-89da-638f1f0ee225</UserId>
  </InfluencerDto>
  <InfluencerDto>
    <AccountId>839d5f89-1973-4b72-ae9d-0002046d859f</AccountId>
    <AccountName>sample string 6</AccountName>
    <ContestId>807d0bdf-57ff-4484-b3ea-c242d6305fa9</ContestId>
    <ContestName>sample string 5</ContestName>
    <FirstName>sample string 2</FirstName>
    <Id>f500db60-c2bc-4b13-a6c5-1c8aabe9472b</Id>
    <InfluencerImage>sample string 4</InfluencerImage>
    <LastName>sample string 3</LastName>
    <Points>1</Points>
    <UserId>ba6d7b59-465f-4d65-89da-638f1f0ee225</UserId>
  </InfluencerDto>
</ArrayOfInfluencerDto>