PUT api/achievements?achievement_id={achievement_id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| achievement_id | globally unique identifier |
Required |
Body Parameters
AchievementDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| achieved |
Sets the date achieved. |
date |
Required |
| achievement |
Sets the achievement. |
string |
Required |
| age_group_id |
Sets the identifier of the age group. |
globally unique identifier |
None. |
| class_id |
Sets the identifier of the class. |
globally unique identifier |
None. |
| location | string |
Required |
|
| member_id |
Sets the identifier of the member. |
globally unique identifier |
Required |
| round_id |
Sets the identifier of the round. |
globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"achieved": "2026-06-21T20:40:03.5989028+01:00",
"achievement": "sample string 2",
"age_group_id": "e6522c75-ffcb-4118-a5a1-80785f341565",
"class_id": "14d9f78b-9ab0-46c1-b8af-82bf6fa5017d",
"location": "sample string 5",
"member_id": "1b2242d7-b07e-42b6-b90b-7c472f6c43d7",
"round_id": "3d18c695-063f-4355-bd3c-14721450fe02"
}
multipart/form-data
Sample:
{"achieved":"2026-06-21T20:40:03.5989028+01:00","achievement":"sample string 2","age_group_id":"e6522c75-ffcb-4118-a5a1-80785f341565","class_id":"14d9f78b-9ab0-46c1-b8af-82bf6fa5017d","location":"sample string 5","member_id":"1b2242d7-b07e-42b6-b90b-7c472f6c43d7","round_id":"3d18c695-063f-4355-bd3c-14721450fe02"}
application/xml, text/xml
Sample:
<AchievementDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Archery_Records_API.Models"> <achieved>2026-06-21T20:40:03.5989028+01:00</achieved> <achievement>sample string 2</achievement> <age_group_id>e6522c75-ffcb-4118-a5a1-80785f341565</age_group_id> <class_id>14d9f78b-9ab0-46c1-b8af-82bf6fa5017d</class_id> <location>sample string 5</location> <member_id>1b2242d7-b07e-42b6-b90b-7c472f6c43d7</member_id> <round_id>3d18c695-063f-4355-bd3c-14721450fe02</round_id> </AchievementDetails>
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. |