GET api/Sticker/GetStickerBasedOnAccount?accountId={accountId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountId | globally unique identifier |
Required |
Body Parameters
None.
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": "fb532d1c-ecfb-4cd7-8b56-fefdad95f606", "AccountId": "0953692c-610f-4aa7-9b03-e4ed6fb7b43d", "AccountName": "sample string 3", "StickerType": "797198b2-d2bf-4e9e-a81e-0ad9e714b95c", "StickerTypeName": "sample string 5", "StickerImage": "sample string 6", "IsSelected": true }, { "Id": "fb532d1c-ecfb-4cd7-8b56-fefdad95f606", "AccountId": "0953692c-610f-4aa7-9b03-e4ed6fb7b43d", "AccountName": "sample string 3", "StickerType": "797198b2-d2bf-4e9e-a81e-0ad9e714b95c", "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>0953692c-610f-4aa7-9b03-e4ed6fb7b43d</AccountId> <AccountName>sample string 3</AccountName> <Id>fb532d1c-ecfb-4cd7-8b56-fefdad95f606</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>797198b2-d2bf-4e9e-a81e-0ad9e714b95c</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> <StickerDto> <AccountId>0953692c-610f-4aa7-9b03-e4ed6fb7b43d</AccountId> <AccountName>sample string 3</AccountName> <Id>fb532d1c-ecfb-4cd7-8b56-fefdad95f606</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>797198b2-d2bf-4e9e-a81e-0ad9e714b95c</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> </ArrayOfStickerDto>