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": "2025-10-31T00:34:36.6908856+00:00",
  "achievement": "sample string 2",
  "age_group_id": "46d23127-f39d-4ebb-9f87-7da0e700ce4a",
  "class_id": "eab2e0ae-2089-47b7-99e8-41363fa3386b",
  "location": "sample string 5",
  "member_id": "f5be1ae3-c32e-4900-b5da-70d7c84b0953",
  "round_id": "62b1f315-a1ac-4319-941e-57ae8601dab1"
}
        multipart/form-data
            Sample:
        
{"achieved":"2025-10-31T00:34:36.6908856+00:00","achievement":"sample string 2","age_group_id":"46d23127-f39d-4ebb-9f87-7da0e700ce4a","class_id":"eab2e0ae-2089-47b7-99e8-41363fa3386b","location":"sample string 5","member_id":"f5be1ae3-c32e-4900-b5da-70d7c84b0953","round_id":"62b1f315-a1ac-4319-941e-57ae8601dab1"}
        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>2025-10-31T00:34:36.6908856+00:00</achieved> <achievement>sample string 2</achievement> <age_group_id>46d23127-f39d-4ebb-9f87-7da0e700ce4a</age_group_id> <class_id>eab2e0ae-2089-47b7-99e8-41363fa3386b</class_id> <location>sample string 5</location> <member_id>f5be1ae3-c32e-4900-b5da-70d7c84b0953</member_id> <round_id>62b1f315-a1ac-4319-941e-57ae8601dab1</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. | 
