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
AwardData| Name | 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-11-28T13:05:43.5602811+00:00",
"archer_id": "fe326c06-09aa-402d-a190-9f2bb1108d51",
"award": "sample string 3",
"category_id": "fed80500-5ef7-4cdd-8f38-e762494e6fff",
"class_id": "f98ed5fe-26db-41b6-bf03-e21b9f4939af",
"round_id": "6fccb3ec-cc0c-4b07-bd4b-acfb935a9757"
}
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-11-28T13:05:43.5602811+00:00</achieved> <archer_id>fe326c06-09aa-402d-a190-9f2bb1108d51</archer_id> <award>sample string 3</award> <category_id>fed80500-5ef7-4cdd-8f38-e762494e6fff</category_id> <class_id>f98ed5fe-26db-41b6-bf03-e21b9f4939af</class_id> <round_id>6fccb3ec-cc0c-4b07-bd4b-acfb935a9757</round_id> </AwardData>
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. |