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": "b75cd6a7-27cf-4705-bbd2-faeaef31edc2", "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>b75cd6a7-27cf-4705-bbd2-faeaef31edc2</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": "bcededa2-5c04-422b-a83e-75b329f52591", "AccountId": "2e708ef6-d4a5-43fb-85e1-fbace52a64d3", "AccountName": "sample string 3", "StickerType": "cfa1c4f5-98f0-49fe-b062-9baf2bd7ba74", "StickerTypeName": "sample string 5", "StickerImage": "sample string 6", "IsSelected": true }, { "Id": "bcededa2-5c04-422b-a83e-75b329f52591", "AccountId": "2e708ef6-d4a5-43fb-85e1-fbace52a64d3", "AccountName": "sample string 3", "StickerType": "cfa1c4f5-98f0-49fe-b062-9baf2bd7ba74", "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>2e708ef6-d4a5-43fb-85e1-fbace52a64d3</AccountId> <AccountName>sample string 3</AccountName> <Id>bcededa2-5c04-422b-a83e-75b329f52591</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>cfa1c4f5-98f0-49fe-b062-9baf2bd7ba74</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> <StickerDto> <AccountId>2e708ef6-d4a5-43fb-85e1-fbace52a64d3</AccountId> <AccountName>sample string 3</AccountName> <Id>bcededa2-5c04-422b-a83e-75b329f52591</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>cfa1c4f5-98f0-49fe-b062-9baf2bd7ba74</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> </ArrayOfStickerDto>