PUT api/{apiVersion}/Comment/Update
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| apiVersion | string |
None. |
Body Parameters
CommentViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CommentID | integer |
None. |
|
| MatchGuid | globally unique identifier |
None. |
|
| VenueGuid | globally unique identifier |
None. |
|
| UserName | string |
None. |
|
| UserIntials | string |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| DayNo | integer |
None. |
|
| Comment | string |
None. |
|
| DateCreated | date |
None. |
|
| ThumbUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CommentID": 1,
"MatchGuid": "b5c88b08-4128-4b23-9809-6c4ef270b847",
"VenueGuid": "2de0eb5d-94bb-4d53-8d06-dc13d2734e9e",
"UserName": "sample string 4",
"UserIntials": "sample string 5",
"FirstName": "sample string 6",
"LastName": "sample string 7",
"DayNo": 8,
"Comment": "sample string 9",
"DateCreated": "2025-12-10T12:36:37.5537511+13:00",
"ThumbUrl": "sample string 11"
}
application/xml, text/xml
Sample:
<CommentViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NvPlay.Reporting.Domain.Models.Comment"> <Comment>sample string 9</Comment> <CommentID>1</CommentID> <DateCreated>2025-12-10T12:36:37.5537511+13:00</DateCreated> <DayNo>8</DayNo> <FirstName>sample string 6</FirstName> <LastName>sample string 7</LastName> <MatchGuid>b5c88b08-4128-4b23-9809-6c4ef270b847</MatchGuid> <ThumbUrl>sample string 11</ThumbUrl> <UserIntials>sample string 5</UserIntials> <UserName>sample string 4</UserName> <VenueGuid>2de0eb5d-94bb-4d53-8d06-dc13d2734e9e</VenueGuid> </CommentViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.