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-02-04T02:16:27.0073996+00:00",
"achievement": "sample string 2",
"age_group_id": "cc6ad525-c2a5-4008-a4dd-adc215d93ad8",
"class_id": "2d4fdadb-32a4-4e32-9952-0db19a44612d",
"location": "sample string 5",
"member_id": "a8c90c31-bc8e-4ec6-a670-4363e9153085",
"round_id": "051c40f1-3df8-4270-a828-cffbd6b35353"
}
multipart/form-data
Sample:
{"achieved":"2026-02-04T02:16:27.0073996+00:00","achievement":"sample string 2","age_group_id":"cc6ad525-c2a5-4008-a4dd-adc215d93ad8","class_id":"2d4fdadb-32a4-4e32-9952-0db19a44612d","location":"sample string 5","member_id":"a8c90c31-bc8e-4ec6-a670-4363e9153085","round_id":"051c40f1-3df8-4270-a828-cffbd6b35353"}
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-02-04T02:16:27.0073996+00:00</achieved> <achievement>sample string 2</achievement> <age_group_id>cc6ad525-c2a5-4008-a4dd-adc215d93ad8</age_group_id> <class_id>2d4fdadb-32a4-4e32-9952-0db19a44612d</class_id> <location>sample string 5</location> <member_id>a8c90c31-bc8e-4ec6-a670-4363e9153085</member_id> <round_id>051c40f1-3df8-4270-a828-cffbd6b35353</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. |