PUT api/awards?award_id={award_id}
Updates an award in the database given the unique id of the award
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
award_id | globally unique identifier |
Required |
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-06-14T16:17:54.2385099+01:00", "archer_id": "213a8e44-eea1-4f77-89ed-8efbc475c874", "award": "sample string 3", "category_id": "7c8d2c36-bb68-499e-851f-353923b16bd7", "class_id": "c7c7cbe8-4ebe-4b6f-9434-dfc28d0f50d5", "round_id": "b11a03d4-71d2-4e65-bb3a-52290da479c8" }
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-06-14T16:17:54.2385099+01:00</achieved> <archer_id>213a8e44-eea1-4f77-89ed-8efbc475c874</archer_id> <award>sample string 3</award> <category_id>7c8d2c36-bb68-499e-851f-353923b16bd7</category_id> <class_id>c7c7cbe8-4ebe-4b6f-9434-dfc28d0f50d5</class_id> <round_id>b11a03d4-71d2-4e65-bb3a-52290da479c8</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. |