GET api/Account/GetAccountPlayDetails?accountId={accountId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
accountId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountPlayDetailDtoName | Description | Type | Additional information |
---|---|---|---|
AccountId | globally unique identifier |
None. |
|
HowToPlayText | string |
None. |
|
ContentImage | string |
None. |
|
ContentImageUrl | string |
None. |
|
ContentVideo | string |
None. |
|
ContentVideoUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "AccountId": "e48dee48-1e5b-48c3-8c01-dc6f909c35a2", "HowToPlayText": "sample string 2", "ContentImage": "sample string 3", "ContentImageUrl": "sample string 4", "ContentVideo": "sample string 5", "ContentVideoUrl": "sample string 6" }
application/xml, text/xml
Sample:
<AccountPlayDetailDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.AcccountPlayDetailsModule.Model"> <AccountId>e48dee48-1e5b-48c3-8c01-dc6f909c35a2</AccountId> <ContentImage>sample string 3</ContentImage> <ContentImageUrl>sample string 4</ContentImageUrl> <ContentVideo>sample string 5</ContentVideo> <ContentVideoUrl>sample string 6</ContentVideoUrl> <HowToPlayText>sample string 2</HowToPlayText> </AccountPlayDetailDto>