POST api/clubrecords
Adds a club record to the database.
Request Information
URI Parameters
None.
Body Parameters
ClubRecordDetails| Name | Description | Type | Additional information | 
|---|---|---|---|
| age_group_id | Sets the identifier of the age group. | globally unique identifier | Required | 
| class_id | Sets the identifier of the class. | globally unique identifier | Required | 
| date_shot | Sets the date shot. | date | Required | 
| golds | Sets the number of golds. | integer | None. | 
| hits | Sets the number of hits. | integer | None. | 
| location | Sets the location. | string | Required | 
| member_id | Gets or sets the identifier of the member. | globally unique identifier | Required | 
| round_id | Sets the identifier of the round. | globally unique identifier | Required | 
| score | Sets the score. | integer | Required | 
| status | Sets the status. | StatusOptions | Required | 
| tens | Sets the number of tens. | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "age_group_id": "6ad0622b-5084-462a-aa66-2640d68dba0d",
  "class_id": "dacb832f-61a5-4723-ba31-2ec2d3a16a49",
  "date_shot": "2025-10-31T00:38:16.8775201+00:00",
  "golds": 1,
  "hits": 1,
  "location": "sample string 4",
  "member_id": "f08c90f1-dfa9-4a99-8c8a-6049b82b7d73",
  "round_id": "388f35a4-abc4-4861-8015-737823d92d1a",
  "score": 1,
  "status": 1,
  "tens": 1
}
        multipart/form-data
            Sample:
        
{"age_group_id":"6ad0622b-5084-462a-aa66-2640d68dba0d","class_id":"dacb832f-61a5-4723-ba31-2ec2d3a16a49","date_shot":"2025-10-31T00:38:16.8775201+00:00","golds":1,"hits":1,"location":"sample string 4","member_id":"f08c90f1-dfa9-4a99-8c8a-6049b82b7d73","round_id":"388f35a4-abc4-4861-8015-737823d92d1a","score":1,"status":1,"tens":1}
        application/xml, text/xml
            Sample:
        <ClubRecordDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API.Models"> <age_group_id>6ad0622b-5084-462a-aa66-2640d68dba0d</age_group_id> <class_id>dacb832f-61a5-4723-ba31-2ec2d3a16a49</class_id> <date_shot>2025-10-31T00:38:16.8775201+00:00</date_shot> <golds>1</golds> <hits>1</hits> <location>sample string 4</location> <member_id>f08c90f1-dfa9-4a99-8c8a-6049b82b7d73</member_id> <round_id>388f35a4-abc4-4861-8015-737823d92d1a</round_id> <score>1</score> <status>Club_Record</status> <tens>1</tens> </ClubRecordDetails>
application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information | 
|---|---|---|---|
| Version | Version | None. | |
| Content | HttpContent | None. | |
| StatusCode | HttpStatusCode | None. | |
| ReasonPhrase | string | None. | |
| Headers | Collection of Object | None. | |
| RequestMessage | HttpRequestMessage | None. | |
| IsSuccessStatusCode | boolean | None. | 
