GET api/Influencer/GetInfluencerForContest?contestId={contestId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
contestId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of InfluencerDtoName | Description | Type | Additional 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": "4df37cef-0d06-4788-814d-47ad4eefb9ec", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "f918a5ce-2f07-4128-9013-406bca7036f7", "ContestId": "9b039057-2764-46ad-8b4c-d799dce7f21c", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "c62e3ff4-e30f-4ebe-a9e2-2a985dce5a6c", "Points": 1 }, { "Id": "4df37cef-0d06-4788-814d-47ad4eefb9ec", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "f918a5ce-2f07-4128-9013-406bca7036f7", "ContestId": "9b039057-2764-46ad-8b4c-d799dce7f21c", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "c62e3ff4-e30f-4ebe-a9e2-2a985dce5a6c", "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>f918a5ce-2f07-4128-9013-406bca7036f7</AccountId> <AccountName>sample string 6</AccountName> <ContestId>9b039057-2764-46ad-8b4c-d799dce7f21c</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>4df37cef-0d06-4788-814d-47ad4eefb9ec</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>c62e3ff4-e30f-4ebe-a9e2-2a985dce5a6c</UserId> </InfluencerDto> <InfluencerDto> <AccountId>f918a5ce-2f07-4128-9013-406bca7036f7</AccountId> <AccountName>sample string 6</AccountName> <ContestId>9b039057-2764-46ad-8b4c-d799dce7f21c</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>4df37cef-0d06-4788-814d-47ad4eefb9ec</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>c62e3ff4-e30f-4ebe-a9e2-2a985dce5a6c</UserId> </InfluencerDto> </ArrayOfInfluencerDto>