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-10-13T22:19:37.8973852+01:00", "archer_id": "9073018a-c6d2-411d-86bb-ec7b46a4887d", "award": "sample string 3", "category_id": "a2ad6daa-40bc-4747-9782-f0090e526000", "class_id": "a2a4d34c-b5ce-4420-aff3-e7407fed8462", "round_id": "742a29bc-bbb3-4403-b610-16f77db7ddc1" }
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-10-13T22:19:37.8973852+01:00</achieved> <archer_id>9073018a-c6d2-411d-86bb-ec7b46a4887d</archer_id> <award>sample string 3</award> <category_id>a2ad6daa-40bc-4747-9782-f0090e526000</category_id> <class_id>a2a4d34c-b5ce-4420-aff3-e7407fed8462</class_id> <round_id>742a29bc-bbb3-4403-b610-16f77db7ddc1</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. |