POST api/v1/TestResult/TEST_POST_NewTestResult

Create a new Test Result.

Request Information

URI Parameters

None.

Body Parameters

Test Result Object

TestResultModelPost
NameDescriptionTypeAdditional information
containernumber

string

None.

vialnumber

string

None.

datetested

date

None.

comments

string

None.

tpmresult

decimal number

None.

tpmtemp

decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "containernumber": "sample string 1",
  "vialnumber": "sample string 2",
  "datetested": "2026-08-16T17:18:18.0381782+00:00",
  "comments": "sample string 4",
  "tpmresult": 1.0,
  "tpmtemp": 1.0
}

application/xml, text/xml

Sample:
<TestResultModelPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/nfuels_sharedmodels.Models.TestResult">
  <comments>sample string 4</comments>
  <containernumber>sample string 1</containernumber>
  <datetested>2026-08-16T17:18:18.0381782+00:00</datetested>
  <tpmresult>1</tpmresult>
  <tpmtemp>1</tpmtemp>
  <vialnumber>sample string 2</vialnumber>
</TestResultModelPost>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

New APIPostResult. If response code is OK, the Id contains the newly inserted id of collection request record. If an error occurred, the message field will contain an error message.

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.