POST api/awards
Adds an award to the database.
Request Information
URI Parameters
None.
Body Parameters
AwardDataName | Description | Type | Additional information |
---|---|---|---|
achieved | date |
Required |
|
archer_id | globally unique identifier |
Required |
|
award | string |
Required |
|
category_id | globally unique identifier |
None. |
|
class_id | globally unique identifier |
None. |
|
round_id | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "achieved": "2025-04-04T03:12:06.1094142+01:00", "archer_id": "7a1c07f7-2605-4a23-ad01-9199ed3904c4", "award": "sample string 3", "category_id": "ffaf460c-df24-4a3f-8047-b3e7fb01f279", "class_id": "a1a985ef-3a5b-4bda-a784-67b2348650af", "round_id": "fbfdfc29-553f-4a62-b268-412be5e5bbbc" }
application/xml, text/xml
Sample:
<AwardData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API.Models"> <achieved>2025-04-04T03:12:06.1094142+01:00</achieved> <archer_id>7a1c07f7-2605-4a23-ad01-9199ed3904c4</archer_id> <award>sample string 3</award> <category_id>ffaf460c-df24-4a3f-8047-b3e7fb01f279</category_id> <class_id>a1a985ef-3a5b-4bda-a784-67b2348650af</class_id> <round_id>fbfdfc29-553f-4a62-b268-412be5e5bbbc</round_id> </AwardData>
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. |