POST api/TrackerComment

Request Information

URI Parameters

None.

Body Parameters

TrackerComment
NameDescriptionTypeAdditional information
Id

integer

None.

TrackerLineId

integer

None.

Comments

string

None.

CreatedDate

date

None.

CreatedBy

integer

None.

LastModifiedDate

date

None.

LastModifiedBy

integer

None.

DeletedDate

date

None.

DeletedBy

integer

None.

CommentUserName

string

None.

CommentUserShortName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "TrackerLineId": 2,
  "Comments": "sample string 3",
  "CreatedDate": "2025-08-29T20:29:38.3510051+00:00",
  "CreatedBy": 5,
  "LastModifiedDate": "2025-08-29T20:29:38.3510051+00:00",
  "LastModifiedBy": 7,
  "DeletedDate": "2025-08-29T20:29:38.3510051+00:00",
  "DeletedBy": 1,
  "CommentUserName": "sample string 8",
  "CommentUserShortName": "sample string 9"
}

application/xml, text/xml

Sample:
<TrackerComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MSCWebAPI.Domain">
  <CommentUserName>sample string 8</CommentUserName>
  <CommentUserShortName>sample string 9</CommentUserShortName>
  <Comments>sample string 3</Comments>
  <CreatedBy>5</CreatedBy>
  <CreatedDate>2025-08-29T20:29:38.3510051+00:00</CreatedDate>
  <DeletedBy>1</DeletedBy>
  <DeletedDate>2025-08-29T20:29:38.3510051+00:00</DeletedDate>
  <Id>1</Id>
  <LastModifiedBy>7</LastModifiedBy>
  <LastModifiedDate>2025-08-29T20:29:38.3510051+00:00</LastModifiedDate>
  <TrackerLineId>2</TrackerLineId>
</TrackerComment>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.