POST api/clubrecords
Adds a club record to the database.
Request Information
URI Parameters
None.
Body Parameters
ClubRecordDataName | Description | Type | Additional information |
---|---|---|---|
archer_id | globally unique identifier |
Required |
|
category_id | globally unique identifier |
Required |
|
class_id | globally unique identifier |
Required |
|
date_shot | date |
Required |
|
golds | integer |
None. |
|
hits | integer |
None. |
|
location | string |
Required |
|
round_id | globally unique identifier |
Required |
|
score | integer |
Required |
|
status | StatusOptions |
Required |
|
tens | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "archer_id": "2647d0cd-9bb1-4f8e-ae59-4fba9eb13a7f", "category_id": "976487fc-b463-4a2a-ad1a-30cd74d5da9a", "class_id": "f9991853-bfe3-4d7b-b6e8-31bdba48b05f", "date_shot": "2025-04-04T03:13:49.3749206+01:00", "golds": 1, "hits": 1, "location": "sample string 5", "round_id": "3f783779-7dab-4a92-b17b-5c42f1d84ac8", "score": 1, "status": 1, "tens": 1 }
application/xml, text/xml
Sample:
<ClubRecordData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API.Models"> <archer_id>2647d0cd-9bb1-4f8e-ae59-4fba9eb13a7f</archer_id> <category_id>976487fc-b463-4a2a-ad1a-30cd74d5da9a</category_id> <class_id>f9991853-bfe3-4d7b-b6e8-31bdba48b05f</class_id> <date_shot>2025-04-04T03:13:49.3749206+01:00</date_shot> <golds>1</golds> <hits>1</hits> <location>sample string 5</location> <round_id>3f783779-7dab-4a92-b17b-5c42f1d84ac8</round_id> <score>1</score> <status>Club_Record</status> <tens>1</tens> </ClubRecordData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | 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. |