GET api/TrialRuns/{id}

Returns a TrialRuns record based on specified ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of TrialRuns data

integer

Required

Body Parameters

None.

Response Information

Resource Description

TrialRunsData
NameDescriptionTypeAdditional information
TrialRunID

integer

None.

UserMachineCode

string

None.

UserMacAddress

string

None.

ProductID

integer

None.

ProductCode

string

None.

UserTrialKey

string

None.

UserIPAddress

string

None.

CreatedDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "TrialRunID": 1,
  "UserMachineCode": "sample string 2",
  "UserMacAddress": "sample string 3",
  "ProductID": 4,
  "ProductCode": "sample string 5",
  "UserTrialKey": "sample string 6",
  "UserIPAddress": "sample string 7",
  "CreatedDate": "2026-01-18T14:45:34.3156286-08:00"
}

text/xml

Sample:
<TrialRunsData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CodeBhagat.DAL">
  <CreatedDate>2026-01-18T14:45:34.3156286-08:00</CreatedDate>
  <ProductCode>sample string 5</ProductCode>
  <ProductID>4</ProductID>
  <TrialRunID>1</TrialRunID>
  <UserIPAddress>sample string 7</UserIPAddress>
  <UserMacAddress>sample string 3</UserMacAddress>
  <UserMachineCode>sample string 2</UserMachineCode>
  <UserTrialKey>sample string 6</UserTrialKey>
</TrialRunsData>