GET issueComments/{discId}/{lastDiscrepancyCommId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| discId | integer |
Required |
|
| lastDiscrepancyCommId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of IssueComment| Name | Description | Type | Additional information |
|---|---|---|---|
| fname | string |
None. |
|
| lname | string |
None. |
|
| contact_id | integer |
None. |
|
| create_date | date |
None. |
|
| comment | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"fname": "sample string 1",
"lname": "sample string 2",
"contact_id": 3,
"create_date": "2026-05-05T21:27:46.0407626+00:00",
"comment": "sample string 4"
},
{
"fname": "sample string 1",
"lname": "sample string 2",
"contact_id": 3,
"create_date": "2026-05-05T21:27:46.0407626+00:00",
"comment": "sample string 4"
}
]
text/html
Sample:
[{"fname":"sample string 1","lname":"sample string 2","contact_id":3,"create_date":"2026-05-05T21:27:46.0407626+00:00","comment":"sample string 4"},{"fname":"sample string 1","lname":"sample string 2","contact_id":3,"create_date":"2026-05-05T21:27:46.0407626+00:00","comment":"sample string 4"}]
application/xml, text/xml
Sample:
<ArrayOfIssueComment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ops.Data.Traxpod">
<IssueComment>
<comment>sample string 4</comment>
<contact_id>3</contact_id>
<create_date>2026-05-05T21:27:46.0407626+00:00</create_date>
<fname>sample string 1</fname>
<lname>sample string 2</lname>
</IssueComment>
<IssueComment>
<comment>sample string 4</comment>
<contact_id>3</contact_id>
<create_date>2026-05-05T21:27:46.0407626+00:00</create_date>
<fname>sample string 1</fname>
<lname>sample string 2</lname>
</IssueComment>
</ArrayOfIssueComment>