GET api/Influencer/GetInfluencerForAccount?accountId={accountId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountId | 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": "6fd5438e-8213-4a6a-8b7d-0222156b9f5e", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "110205eb-4992-43b3-9a67-14e50c0af2d3", "ContestId": "c9544471-feb1-4f13-9d49-2a17eef3a740", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "05c5ce0c-3c32-4c67-9126-f50638b5c2c3", "Points": 1 }, { "Id": "6fd5438e-8213-4a6a-8b7d-0222156b9f5e", "FirstName": "sample string 2", "LastName": "sample string 3", "InfluencerImage": "sample string 4", "AccountId": "110205eb-4992-43b3-9a67-14e50c0af2d3", "ContestId": "c9544471-feb1-4f13-9d49-2a17eef3a740", "ContestName": "sample string 5", "AccountName": "sample string 6", "UserId": "05c5ce0c-3c32-4c67-9126-f50638b5c2c3", "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>110205eb-4992-43b3-9a67-14e50c0af2d3</AccountId> <AccountName>sample string 6</AccountName> <ContestId>c9544471-feb1-4f13-9d49-2a17eef3a740</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>6fd5438e-8213-4a6a-8b7d-0222156b9f5e</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>05c5ce0c-3c32-4c67-9126-f50638b5c2c3</UserId> </InfluencerDto> <InfluencerDto> <AccountId>110205eb-4992-43b3-9a67-14e50c0af2d3</AccountId> <AccountName>sample string 6</AccountName> <ContestId>c9544471-feb1-4f13-9d49-2a17eef3a740</ContestId> <ContestName>sample string 5</ContestName> <FirstName>sample string 2</FirstName> <Id>6fd5438e-8213-4a6a-8b7d-0222156b9f5e</Id> <InfluencerImage>sample string 4</InfluencerImage> <LastName>sample string 3</LastName> <Points>1</Points> <UserId>05c5ce0c-3c32-4c67-9126-f50638b5c2c3</UserId> </InfluencerDto> </ArrayOfInfluencerDto>