POST api/Sticker/GetStickerBasedOnType
Request Information
URI Parameters
None.
Body Parameters
StickerFilterInfoName | Description | Type | Additional information |
---|---|---|---|
accountId | globally unique identifier |
None. |
|
stickerType | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "accountId": "5990e050-41dc-4df6-b95b-e9b45500db81", "stickerType": "sample string 2" }
application/xml, text/xml
Sample:
<StickerFilterInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.StickerModule.Model"> <accountId>5990e050-41dc-4df6-b95b-e9b45500db81</accountId> <stickerType>sample string 2</stickerType> </StickerFilterInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of StickerDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
AccountId | globally unique identifier |
None. |
|
AccountName | string |
None. |
|
StickerType | globally unique identifier |
None. |
|
StickerTypeName | string |
None. |
|
StickerImage | string |
None. |
|
IsSelected | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "87cc892d-4fbe-44d2-8ccd-0be8b3a536df", "AccountId": "42626eea-c774-476c-a034-0ffc101f2934", "AccountName": "sample string 3", "StickerType": "c5764244-9641-4698-919d-c0fdb537dc40", "StickerTypeName": "sample string 5", "StickerImage": "sample string 6", "IsSelected": true }, { "Id": "87cc892d-4fbe-44d2-8ccd-0be8b3a536df", "AccountId": "42626eea-c774-476c-a034-0ffc101f2934", "AccountName": "sample string 3", "StickerType": "c5764244-9641-4698-919d-c0fdb537dc40", "StickerTypeName": "sample string 5", "StickerImage": "sample string 6", "IsSelected": true } ]
application/xml, text/xml
Sample:
<ArrayOfStickerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.StickerModule.Model"> <StickerDto> <AccountId>42626eea-c774-476c-a034-0ffc101f2934</AccountId> <AccountName>sample string 3</AccountName> <Id>87cc892d-4fbe-44d2-8ccd-0be8b3a536df</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>c5764244-9641-4698-919d-c0fdb537dc40</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> <StickerDto> <AccountId>42626eea-c774-476c-a034-0ffc101f2934</AccountId> <AccountName>sample string 3</AccountName> <Id>87cc892d-4fbe-44d2-8ccd-0be8b3a536df</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>c5764244-9641-4698-919d-c0fdb537dc40</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> </ArrayOfStickerDto>