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-02-04T02:12:54.6515109+00:00",
"achievement": "sample string 2",
"age_group_id": "c1454298-a98f-4794-8368-8683f7d7606e",
"class_id": "b2744dc7-323d-4eba-99fc-ffdc2c8151b5",
"location": "sample string 5",
"member_id": "a5bbc1cf-ed72-4260-8081-e9906e4113e4",
"round_id": "5d39946c-cada-4d3a-9435-0881c37b3a4b"
}
multipart/form-data
Sample:
{"achieved":"2026-02-04T02:12:54.6515109+00:00","achievement":"sample string 2","age_group_id":"c1454298-a98f-4794-8368-8683f7d7606e","class_id":"b2744dc7-323d-4eba-99fc-ffdc2c8151b5","location":"sample string 5","member_id":"a5bbc1cf-ed72-4260-8081-e9906e4113e4","round_id":"5d39946c-cada-4d3a-9435-0881c37b3a4b"}
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:12:54.6515109+00:00</achieved> <achievement>sample string 2</achievement> <age_group_id>c1454298-a98f-4794-8368-8683f7d7606e</age_group_id> <class_id>b2744dc7-323d-4eba-99fc-ffdc2c8151b5</class_id> <location>sample string 5</location> <member_id>a5bbc1cf-ed72-4260-8081-e9906e4113e4</member_id> <round_id>5d39946c-cada-4d3a-9435-0881c37b3a4b</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. |