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": "2025-10-31T00:38:17.5962717+00:00",
  "achievement": "sample string 2",
  "age_group_id": "c9c02347-0226-4df5-a9cd-39882da712d4",
  "class_id": "c1de8f60-07e7-4de2-9109-c22a15f39e17",
  "location": "sample string 5",
  "member_id": "5529da03-5eec-4b2f-8093-1ebcb4e21d14",
  "round_id": "b393f50d-47aa-4c8f-b7a7-ac1340e4b35c"
}
        multipart/form-data
            Sample:
        
{"achieved":"2025-10-31T00:38:17.5962717+00:00","achievement":"sample string 2","age_group_id":"c9c02347-0226-4df5-a9cd-39882da712d4","class_id":"c1de8f60-07e7-4de2-9109-c22a15f39e17","location":"sample string 5","member_id":"5529da03-5eec-4b2f-8093-1ebcb4e21d14","round_id":"b393f50d-47aa-4c8f-b7a7-ac1340e4b35c"}
        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:38:17.5962717+00:00</achieved> <achievement>sample string 2</achievement> <age_group_id>c9c02347-0226-4df5-a9cd-39882da712d4</age_group_id> <class_id>c1de8f60-07e7-4de2-9109-c22a15f39e17</class_id> <location>sample string 5</location> <member_id>5529da03-5eec-4b2f-8093-1ebcb4e21d14</member_id> <round_id>b393f50d-47aa-4c8f-b7a7-ac1340e4b35c</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. | 
