GET api/export/Hayscomments/{startDate}/{endDate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
startDate

date

Required

endDate

date

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Export_HaysComments_Result
NameDescriptionTypeAdditional information
PermitID

integer

None.

MPNCommentID

integer

None.

CommentDate

date

None.

Username

string

None.

Comment

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "PermitID": 1,
    "MPNCommentID": 1,
    "CommentDate": "2024-07-01T16:20:42.7283138-05:00",
    "Username": "sample string 3",
    "Comment": "sample string 4"
  },
  {
    "PermitID": 1,
    "MPNCommentID": 1,
    "CommentDate": "2024-07-01T16:20:42.7283138-05:00",
    "Username": "sample string 3",
    "Comment": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfExport_HaysComments_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.mygovernmentonline.Models">
  <Export_HaysComments_Result>
    <Comment>sample string 4</Comment>
    <CommentDate>2024-07-01T16:20:42.7283138-05:00</CommentDate>
    <MPNCommentID>1</MPNCommentID>
    <PermitID>1</PermitID>
    <Username>sample string 3</Username>
  </Export_HaysComments_Result>
  <Export_HaysComments_Result>
    <Comment>sample string 4</Comment>
    <CommentDate>2024-07-01T16:20:42.7283138-05:00</CommentDate>
    <MPNCommentID>1</MPNCommentID>
    <PermitID>1</PermitID>
    <Username>sample string 3</Username>
  </Export_HaysComments_Result>
</ArrayOfExport_HaysComments_Result>