POST api/Users/UserTrackLogAnonymous

Request Information

URI Parameters

None.

Body Parameters

UserTrackLogView
NameDescriptionTypeAdditional information
RowID

globally unique identifier

None.

DBNo

integer

None.

AppNo

integer

None.

UserID

integer

None.

UserProfileID

integer

None.

LogId

integer

None.

TrackerID

integer

None.

PageVisited

string

None.

StartTime

date

None.

EndTime

date

None.

TableSrc

string

None.

TableSrcROWID

globally unique identifier

None.

DataAction

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RowID": "d073d9b0-1118-42a7-a258-3e3b93340732",
  "DBNo": 1,
  "AppNo": 1,
  "UserID": 1,
  "UserProfileID": 1,
  "LogId": 2,
  "TrackerID": 1,
  "PageVisited": "sample string 3",
  "StartTime": "2026-04-06T21:32:12.3423088-05:00",
  "EndTime": "2026-04-06T21:32:12.3423088-05:00",
  "TableSrc": "sample string 4",
  "TableSrcROWID": "fc52e5a6-43a4-44fc-bf04-5e92fa132f23",
  "DataAction": "sample string 5"
}

application/xml, text/xml

Sample:
<UserTrackLogView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
  <AppNo>1</AppNo>
  <DBNo>1</DBNo>
  <DataAction>sample string 5</DataAction>
  <EndTime>2026-04-06T21:32:12.3423088-05:00</EndTime>
  <LogId>2</LogId>
  <PageVisited>sample string 3</PageVisited>
  <RowID>d073d9b0-1118-42a7-a258-3e3b93340732</RowID>
  <StartTime>2026-04-06T21:32:12.3423088-05:00</StartTime>
  <TableSrc>sample string 4</TableSrc>
  <TableSrcROWID>fc52e5a6-43a4-44fc-bf04-5e92fa132f23</TableSrcROWID>
  <TrackerID>1</TrackerID>
  <UserID>1</UserID>
  <UserProfileID>1</UserProfileID>
</UserTrackLogView>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>