POST api/Influencer/DeleteInfluencer
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": "c90d31b6-70b6-44a6-a4e7-2e3e4a9bd571", "FirstName": "sample string 2", "LastName": "sample string 3", "AccountId": "75ee40bf-2e15-449d-8b77-634696de6f41", "ContestId": "b3074c95-46ce-4513-ba86-cbf489ae752f", "UserId": "5ce57328-8467-494b-8c33-c0eec6d0b9fb" }
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>75ee40bf-2e15-449d-8b77-634696de6f41</AccountId> <ContestId>b3074c95-46ce-4513-ba86-cbf489ae752f</ContestId> <FirstName>sample string 2</FirstName> <Id>c90d31b6-70b6-44a6-a4e7-2e3e4a9bd571</Id> <LastName>sample string 3</LastName> <UserId>5ce57328-8467-494b-8c33-c0eec6d0b9fb</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>