POST api/achievements
Request Information
URI Parameters
None.
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-03-21T21:38:19.9126236+00:00",
"achievement": "sample string 2",
"age_group_id": "613f3e7f-40b2-4966-8edd-0edeaa49c03a",
"class_id": "9852fa35-d91c-4c65-b92e-6a14d8cee736",
"location": "sample string 5",
"member_id": "a6ae4da1-038e-4c21-b0d7-1d233cccae75",
"round_id": "f085e807-f9dd-4ef5-9483-a2ce9c4dcb3a"
}
multipart/form-data
Sample:
{"achieved":"2026-03-21T21:38:19.9126236+00:00","achievement":"sample string 2","age_group_id":"613f3e7f-40b2-4966-8edd-0edeaa49c03a","class_id":"9852fa35-d91c-4c65-b92e-6a14d8cee736","location":"sample string 5","member_id":"a6ae4da1-038e-4c21-b0d7-1d233cccae75","round_id":"f085e807-f9dd-4ef5-9483-a2ce9c4dcb3a"}
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-03-21T21:38:19.9126236+00:00</achieved> <achievement>sample string 2</achievement> <age_group_id>613f3e7f-40b2-4966-8edd-0edeaa49c03a</age_group_id> <class_id>9852fa35-d91c-4c65-b92e-6a14d8cee736</class_id> <location>sample string 5</location> <member_id>a6ae4da1-038e-4c21-b0d7-1d233cccae75</member_id> <round_id>f085e807-f9dd-4ef5-9483-a2ce9c4dcb3a</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. |