POST api/Logging/LogUIAssetLoadDuration
Logs the duration of asset loading in the user interface.
Request Information
URI Parameters
None.
Body Parameters
An AssetLoadTimeLogEntry containing information about the asset loading duration.
AssetLoadTimeLogEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| EntryDt | date |
None. |
|
| UserId | string |
None. |
|
| AssetId | globally unique identifier |
None. |
|
| PageDisplayName | string |
None. |
|
| Duration | integer |
None. |
|
| DashboardLoadDuration | integer |
None. |
|
| AssetPageCount | integer |
None. |
|
| Origin | string |
None. |
|
| Location | string |
None. |
|
| BrowserType | string |
None. |
|
| PageLoadDuration | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EntryDt": "2025-10-30T00:21:08.5119747+00:00",
"UserId": "sample string 2",
"AssetId": "5cc105ef-3853-4458-95b3-d64b406b9220",
"PageDisplayName": "sample string 4",
"Duration": 5,
"DashboardLoadDuration": 6,
"AssetPageCount": 7,
"Origin": "sample string 8",
"Location": "sample string 9",
"BrowserType": "sample string 10",
"PageLoadDuration": 11
}
application/xml, text/xml
Sample:
<AssetLoadTimeLogEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KT.BGip.Visualisation.RPMI.Data.Log"> <AssetId>5cc105ef-3853-4458-95b3-d64b406b9220</AssetId> <AssetPageCount>7</AssetPageCount> <BrowserType>sample string 10</BrowserType> <DashboardLoadDuration>6</DashboardLoadDuration> <Duration>5</Duration> <EntryDt>2025-10-30T00:21:08.5119747+00:00</EntryDt> <Location>sample string 9</Location> <Origin>sample string 8</Origin> <PageDisplayName>sample string 4</PageDisplayName> <PageLoadDuration>11</PageLoadDuration> <UserId>sample string 2</UserId> </AssetLoadTimeLogEntry>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns an IHttpActionResult representing the result of the log operation.
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.