GET v1/store/login/user/assets?propertyID={propertyID}
Gets collection of the graphic assets by dial ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| propertyID |
Graphic dial ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns collection of the assets.
Collection of AssetListItemResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ThumbnailUrl |
Graphic asset thumbnail URL. |
string |
None. |
| AssetID |
Graphic asset ID. |
string |
None. |
| DisplayName |
Graphic asset name. |
string |
None. |
| IsUploaded |
Flag that use to distinguish user uploaded asset from PE asset. |
boolean |
None. |
| FileName |
Graphic asset name with extension. |
string |
None. |
| ModificationDate |
Graphic asset modification date. |
date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ThumbnailUrl": "sample string 1",
"AssetID": "sample string 2",
"DisplayName": "sample string 3",
"IsUploaded": true,
"FileName": "sample string 5",
"ModificationDate": "2025-12-16T11:28:29.0722024+01:00"
},
{
"ThumbnailUrl": "sample string 1",
"AssetID": "sample string 2",
"DisplayName": "sample string 3",
"IsUploaded": true,
"FileName": "sample string 5",
"ModificationDate": "2025-12-16T11:28:29.0722024+01:00"
}
]