POST api/Sticker/DeleteSticker
Request Information
URI Parameters
None.
Body Parameters
EditStickerCommandDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
AccountId | globally unique identifier |
None. |
|
StickerType | globally unique identifier |
None. |
|
StickerImage | string |
None. |
|
UserId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": "0ecb3a25-c7b0-4050-8405-1060307b50c6", "AccountId": "719e88dd-325c-49d8-8257-5aca9ba78689", "StickerType": "7b12bfe5-8708-4308-bef8-3eff43764ea5", "StickerImage": "sample string 4", "UserId": "d2e30b74-acd2-4161-9161-6c7f6ad3110c" }
application/xml, text/xml
Sample:
<EditStickerCommandDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.StickerModule.Model"> <AccountId>719e88dd-325c-49d8-8257-5aca9ba78689</AccountId> <Id>0ecb3a25-c7b0-4050-8405-1060307b50c6</Id> <StickerImage>sample string 4</StickerImage> <StickerType>7b12bfe5-8708-4308-bef8-3eff43764ea5</StickerType> <UserId>d2e30b74-acd2-4161-9161-6c7f6ad3110c</UserId> </EditStickerCommandDto>
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>