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": "94de324a-2cda-45e4-b778-8cf302b9b492", "AccountId": "e4c77be7-377a-4ba7-89fe-f49f341c1833", "StickerType": "c8c06776-65d3-46f6-a4fa-a918666d8cfd", "StickerImage": "sample string 4", "UserId": "28b372cc-d97e-44e6-88d6-35a8614d7eb2" }
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>e4c77be7-377a-4ba7-89fe-f49f341c1833</AccountId> <Id>94de324a-2cda-45e4-b778-8cf302b9b492</Id> <StickerImage>sample string 4</StickerImage> <StickerType>c8c06776-65d3-46f6-a4fa-a918666d8cfd</StickerType> <UserId>28b372cc-d97e-44e6-88d6-35a8614d7eb2</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>