GET api/TrialUsers/{id}

Returns a TrialUsers record based on specified ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of TrialUsers data

integer

Required

Body Parameters

None.

Response Information

Resource Description

TrialUsersData
NameDescriptionTypeAdditional information
TrialUserID

integer

None.

UserMachineCode

string

None.

UserMacAddress

string

None.

ProductID

integer

None.

ProductCode

string

None.

UserTrialKey

string

None.

UserLicenseKey

string

None.

RunTimes

integer

None.

AllowedRunTimes

integer

None.

AllowedRunDays

integer

None.

TrialExpirationDate

date

None.

TrialStartDate

date

None.

IsRegistered

boolean

None.

CreatedDate

date

None.

UpdatedDate

date

None.

Tag

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TrialUserID": 1,
  "UserMachineCode": "sample string 2",
  "UserMacAddress": "sample string 3",
  "ProductID": 4,
  "ProductCode": "sample string 5",
  "UserTrialKey": "sample string 6",
  "UserLicenseKey": "sample string 7",
  "RunTimes": 8,
  "AllowedRunTimes": 9,
  "AllowedRunDays": 10,
  "TrialExpirationDate": "2026-01-18T14:43:54.956588-08:00",
  "TrialStartDate": "2026-01-18T14:43:54.956588-08:00",
  "IsRegistered": true,
  "CreatedDate": "2026-01-18T14:43:54.956588-08:00",
  "UpdatedDate": "2026-01-18T14:43:54.956588-08:00",
  "Tag": "sample string 12"
}

text/xml

Sample:
<TrialUsersData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CodeBhagat.DAL">
  <AllowedRunDays>10</AllowedRunDays>
  <AllowedRunTimes>9</AllowedRunTimes>
  <CreatedDate>2026-01-18T14:43:54.956588-08:00</CreatedDate>
  <IsRegistered>true</IsRegistered>
  <ProductCode>sample string 5</ProductCode>
  <ProductID>4</ProductID>
  <RunTimes>8</RunTimes>
  <Tag>sample string 12</Tag>
  <TrialExpirationDate>2026-01-18T14:43:54.956588-08:00</TrialExpirationDate>
  <TrialStartDate>2026-01-18T14:43:54.956588-08:00</TrialStartDate>
  <TrialUserID>1</TrialUserID>
  <UpdatedDate>2026-01-18T14:43:54.956588-08:00</UpdatedDate>
  <UserLicenseKey>sample string 7</UserLicenseKey>
  <UserMacAddress>sample string 3</UserMacAddress>
  <UserMachineCode>sample string 2</UserMachineCode>
  <UserTrialKey>sample string 6</UserTrialKey>
</TrialUsersData>