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": "180f6be6-1bf8-472c-98ce-816430d4d27d", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "0cfc3c4d-aa62-4eb2-b594-0021c6840516", "ContestId": "1f3d10f1-75f8-4709-b1fa-6aa2fe4c9686", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "0fe8f386-5101-46d3-b9ea-64c34911a4c1", "Points": 1 }, { "Id": "180f6be6-1bf8-472c-98ce-816430d4d27d", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "0cfc3c4d-aa62-4eb2-b594-0021c6840516", "ContestId": "1f3d10f1-75f8-4709-b1fa-6aa2fe4c9686", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "0fe8f386-5101-46d3-b9ea-64c34911a4c1", "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>0cfc3c4d-aa62-4eb2-b594-0021c6840516</AccountId> <AccountName>sample string 6</AccountName> <ContestId>1f3d10f1-75f8-4709-b1fa-6aa2fe4c9686</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>180f6be6-1bf8-472c-98ce-816430d4d27d</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>0fe8f386-5101-46d3-b9ea-64c34911a4c1</UserId> </InfluencerDto> <InfluencerDto> <AccountId>0cfc3c4d-aa62-4eb2-b594-0021c6840516</AccountId> <AccountName>sample string 6</AccountName> <ContestId>1f3d10f1-75f8-4709-b1fa-6aa2fe4c9686</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>180f6be6-1bf8-472c-98ce-816430d4d27d</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>0fe8f386-5101-46d3-b9ea-64c34911a4c1</UserId> </InfluencerDto> </ArrayOfInfluencerDto>