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": "44e1f13a-e398-4ba6-ba4a-f4a1e6807ff9", "FirstName": "sample string 2", "LastName": "sample string 3", "AccountId": "97c5b58d-982d-4017-80b0-730c476eb715", "ContestId": "3cf0f527-67cc-4ee8-8258-af0615de4df3", "UserId": "f725498e-18d8-4318-899f-60e9292b3754" }
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>97c5b58d-982d-4017-80b0-730c476eb715</AccountId> <ContestId>3cf0f527-67cc-4ee8-8258-af0615de4df3</ContestId> <FirstName>sample string 2</FirstName> <Id>44e1f13a-e398-4ba6-ba4a-f4a1e6807ff9</Id> <LastName>sample string 3</LastName> <UserId>f725498e-18d8-4318-899f-60e9292b3754</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>