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": "4ef67e62-fc9e-4ff4-b7f1-b11b7b30dfdd", "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>4ef67e62-fc9e-4ff4-b7f1-b11b7b30dfdd</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": "4e8644ea-268e-4985-a416-0c560531e403", "AccountId": "1c805bde-becc-40a8-ba4d-ee9add1d6ce5", "AccountName": "sample string 3", "StickerType": "22d4f32f-1c22-457d-95b5-6ebb2c8bc7d4", "StickerTypeName": "sample string 5", "StickerImage": "sample string 6", "IsSelected": true }, { "Id": "4e8644ea-268e-4985-a416-0c560531e403", "AccountId": "1c805bde-becc-40a8-ba4d-ee9add1d6ce5", "AccountName": "sample string 3", "StickerType": "22d4f32f-1c22-457d-95b5-6ebb2c8bc7d4", "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>1c805bde-becc-40a8-ba4d-ee9add1d6ce5</AccountId> <AccountName>sample string 3</AccountName> <Id>4e8644ea-268e-4985-a416-0c560531e403</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>22d4f32f-1c22-457d-95b5-6ebb2c8bc7d4</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> <StickerDto> <AccountId>1c805bde-becc-40a8-ba4d-ee9add1d6ce5</AccountId> <AccountName>sample string 3</AccountName> <Id>4e8644ea-268e-4985-a416-0c560531e403</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>22d4f32f-1c22-457d-95b5-6ebb2c8bc7d4</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> </ArrayOfStickerDto>