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": "80f97db9-773a-403a-bdca-e11165705e3b", "AccountId": "b6f636d9-04a2-48aa-b644-e838ac3ad964", "AccountName": "sample string 3", "StickerType": "c6e05701-6c61-4de8-96a5-df5f79f6f28e", "StickerTypeName": "sample string 5", "StickerImage": "sample string 6", "IsSelected": true }, { "Id": "80f97db9-773a-403a-bdca-e11165705e3b", "AccountId": "b6f636d9-04a2-48aa-b644-e838ac3ad964", "AccountName": "sample string 3", "StickerType": "c6e05701-6c61-4de8-96a5-df5f79f6f28e", "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>b6f636d9-04a2-48aa-b644-e838ac3ad964</AccountId> <AccountName>sample string 3</AccountName> <Id>80f97db9-773a-403a-bdca-e11165705e3b</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>c6e05701-6c61-4de8-96a5-df5f79f6f28e</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> <StickerDto> <AccountId>b6f636d9-04a2-48aa-b644-e838ac3ad964</AccountId> <AccountName>sample string 3</AccountName> <Id>80f97db9-773a-403a-bdca-e11165705e3b</Id> <IsSelected>true</IsSelected> <StickerImage>sample string 6</StickerImage> <StickerType>c6e05701-6c61-4de8-96a5-df5f79f6f28e</StickerType> <StickerTypeName>sample string 5</StickerTypeName> </StickerDto> </ArrayOfStickerDto>