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": "4fa2b682-c663-4f4a-83e0-72d8df62545f", "FirstName": "sample string 2", "LastName": "sample string 3", "AccountId": "c1c2cb12-0827-41f3-81a6-795af84f5036", "ContestId": "abba97a4-003e-4123-9e74-a34a67611262", "UserId": "b1942f7b-cf42-4038-97eb-aaa11d44543a" }
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>c1c2cb12-0827-41f3-81a6-795af84f5036</AccountId> <ContestId>abba97a4-003e-4123-9e74-a34a67611262</ContestId> <FirstName>sample string 2</FirstName> <Id>4fa2b682-c663-4f4a-83e0-72d8df62545f</Id> <LastName>sample string 3</LastName> <UserId>b1942f7b-cf42-4038-97eb-aaa11d44543a</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>