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": "6576b8ba-21d0-49b1-9356-6342f6576d64", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "3327c7ee-a390-415e-9ca2-68da43ccf079", "ContestId": "72b8ae4c-32b3-46cb-88d5-e61b0e2d1021", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "0f52af66-7554-4276-8b0e-f6e64ff069c1", "Points": 1 }, { "Id": "6576b8ba-21d0-49b1-9356-6342f6576d64", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "3327c7ee-a390-415e-9ca2-68da43ccf079", "ContestId": "72b8ae4c-32b3-46cb-88d5-e61b0e2d1021", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "0f52af66-7554-4276-8b0e-f6e64ff069c1", "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>3327c7ee-a390-415e-9ca2-68da43ccf079</AccountId> <AccountName>sample string 6</AccountName> <ContestId>72b8ae4c-32b3-46cb-88d5-e61b0e2d1021</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>6576b8ba-21d0-49b1-9356-6342f6576d64</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>0f52af66-7554-4276-8b0e-f6e64ff069c1</UserId> </InfluencerDto> <InfluencerDto> <AccountId>3327c7ee-a390-415e-9ca2-68da43ccf079</AccountId> <AccountName>sample string 6</AccountName> <ContestId>72b8ae4c-32b3-46cb-88d5-e61b0e2d1021</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>6576b8ba-21d0-49b1-9356-6342f6576d64</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>0f52af66-7554-4276-8b0e-f6e64ff069c1</UserId> </InfluencerDto> </ArrayOfInfluencerDto>