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": "db63a971-651e-47eb-8d41-0a52e4058897", "FirstName": "sample string 2", "LastName": "sample string 3", "AccountId": "baba75de-38e7-4763-80b3-5a6809d0d9cd", "ContestId": "3591c1c7-9089-4231-b684-e0a90f3d71ff", "UserId": "6f40844e-02ce-4d1d-969a-91d22059bb96" }
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>baba75de-38e7-4763-80b3-5a6809d0d9cd</AccountId> <ContestId>3591c1c7-9089-4231-b684-e0a90f3d71ff</ContestId> <FirstName>sample string 2</FirstName> <Id>db63a971-651e-47eb-8d41-0a52e4058897</Id> <LastName>sample string 3</LastName> <UserId>6f40844e-02ce-4d1d-969a-91d22059bb96</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>