POST api/Influencer/AddInfluencer
Request Information
URI Parameters
None.
Body Parameters
AddInfluencerCommandDtoName | Description | Type | Additional information |
---|---|---|---|
FirstName | string |
None. |
|
LastName | string |
None. |
|
AccountId | globally unique identifier |
None. |
|
ContestId | globally unique identifier |
None. |
|
UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "FirstName": "sample string 1", "LastName": "sample string 2", "AccountId": "72a03164-cf21-446e-8224-eb5cf63daa00", "ContestId": "6145efc7-464e-45ed-ba25-3fad80896380", "UserId": "3ebaa275-62e7-449c-b451-76c9c60fa07d" }
application/xml, text/xml
Sample:
<AddInfluencerCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.InfluencerModule.Model"> <AccountId>72a03164-cf21-446e-8224-eb5cf63daa00</AccountId> <ContestId>6145efc7-464e-45ed-ba25-3fad80896380</ContestId> <FirstName>sample string 1</FirstName> <LastName>sample string 2</LastName> <UserId>3ebaa275-62e7-449c-b451-76c9c60fa07d</UserId> </AddInfluencerCommandDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>