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": "1ad5b2d9-661f-4766-afb5-813ed071e841", "AccountId": "23d8c308-048e-4969-83c4-d1f2975fbdaf", "StickerType": "d2fa96a6-f3a8-4e51-be00-e9fe084597d9", "StickerImage": "sample string 4", "UserId": "571a97ae-c7b7-44fc-b446-f0299d0abacf" }
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>23d8c308-048e-4969-83c4-d1f2975fbdaf</AccountId> <Id>1ad5b2d9-661f-4766-afb5-813ed071e841</Id> <StickerImage>sample string 4</StickerImage> <StickerType>d2fa96a6-f3a8-4e51-be00-e9fe084597d9</StickerType> <UserId>571a97ae-c7b7-44fc-b446-f0299d0abacf</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>