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": "4ba275da-8288-46b7-b7a0-244e6e3484e9", "AccountId": "4dfb2450-fc82-4b21-8598-c236067f3577", "StickerType": "e08dd828-7db8-471d-9ecc-fad848a7915c", "StickerImage": "sample string 4", "UserId": "d3bfd760-27cc-4e6e-bc1f-7c01f502d384" }
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>4dfb2450-fc82-4b21-8598-c236067f3577</AccountId> <Id>4ba275da-8288-46b7-b7a0-244e6e3484e9</Id> <StickerImage>sample string 4</StickerImage> <StickerType>e08dd828-7db8-471d-9ecc-fad848a7915c</StickerType> <UserId>d3bfd760-27cc-4e6e-bc1f-7c01f502d384</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>