POST api/ReplyModels
Request Information
URI Parameters
None.
Body Parameters
ReplyModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| ID | integer | 
                             None.  | 
                |
| Note | string | 
                             None.  | 
                |
| Created | date | 
                             None.  | 
                |
| UserId | integer | 
                             None.  | 
                |
| CommentId | integer | 
                             None.  | 
                
Request Formats
application/json, text/json
            Sample:
        
{
  "ID": 1,
  "Note": "sample string 2",
  "Created": "2025-11-04T07:47:35.1025961+01:00",
  "UserId": 4,
  "CommentId": 5
}
        application/xml, text/xml
            Sample:
        <ReplyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GRUBER.Tennis.App.Server.Models"> <CommentId>5</CommentId> <Created>2025-11-04T07:47:35.1025961+01:00</Created> <ID>1</ID> <Note>sample string 2</Note> <UserId>4</UserId> </ReplyModel>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
ReplyModel| Name | Description | Type | Additional information | 
|---|---|---|---|
| ID | integer | 
                             None.  | 
                |
| Note | string | 
                             None.  | 
                |
| Created | date | 
                             None.  | 
                |
| UserId | integer | 
                             None.  | 
                |
| CommentId | integer | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
{
  "ID": 1,
  "Note": "sample string 2",
  "Created": "2025-11-04T07:47:35.1025961+01:00",
  "UserId": 4,
  "CommentId": 5
}
        application/xml, text/xml
            Sample:
<ReplyModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GRUBER.Tennis.App.Server.Models"> <CommentId>5</CommentId> <Created>2025-11-04T07:47:35.1025961+01:00</Created> <ID>1</ID> <Note>sample string 2</Note> <UserId>4</UserId> </ReplyModel>