POST api/Influencer/EditInfluencer
Request Information
URI Parameters
None.
Body Parameters
EditInfluencerCommandDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
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:
{ "Id": "40713e99-2c67-413a-955c-d1eed9036fe1", "FirstName": "sample string 2", "LastName": "sample string 3", "AccountId": "e4111c80-5ac2-4894-99f8-c6b0bc7834fe", "ContestId": "9bf9942f-09a1-43c0-bfd6-c88f1afa9e41", "UserId": "6ec9f673-bec0-4e89-9dd7-44919bf290b9" }
application/xml, text/xml
Sample:
<EditInfluencerCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.InfluencerModule.Model"> <AccountId>e4111c80-5ac2-4894-99f8-c6b0bc7834fe</AccountId> <ContestId>9bf9942f-09a1-43c0-bfd6-c88f1afa9e41</ContestId> <FirstName>sample string 2</FirstName> <Id>40713e99-2c67-413a-955c-d1eed9036fe1</Id> <LastName>sample string 3</LastName> <UserId>6ec9f673-bec0-4e89-9dd7-44919bf290b9</UserId> </EditInfluencerCommandDto>
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>