PUT api/achievements?achievement_id={achievement_id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
achievement_id

globally unique identifier

Required

Body Parameters

AchievementDetails
NameDescriptionTypeAdditional 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-08-02T09:50:01.6042239+01:00",
  "achievement": "sample string 2",
  "age_group_id": "261b0980-2704-442b-b0b8-9ad6630878b3",
  "class_id": "f8e1752d-9a08-458c-b396-822ec420ce17",
  "location": "sample string 5",
  "member_id": "86a56bef-0450-4efe-96fc-c359542d863f",
  "round_id": "0da6ece6-77c2-435a-a1fb-42f56e76de6b"
}

multipart/form-data

Sample:
{"achieved":"2025-08-02T09:50:01.6042239+01:00","achievement":"sample string 2","age_group_id":"261b0980-2704-442b-b0b8-9ad6630878b3","class_id":"f8e1752d-9a08-458c-b396-822ec420ce17","location":"sample string 5","member_id":"86a56bef-0450-4efe-96fc-c359542d863f","round_id":"0da6ece6-77c2-435a-a1fb-42f56e76de6b"}

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-08-02T09:50:01.6042239+01:00</achieved>
  <achievement>sample string 2</achievement>
  <age_group_id>261b0980-2704-442b-b0b8-9ad6630878b3</age_group_id>
  <class_id>f8e1752d-9a08-458c-b396-822ec420ce17</class_id>
  <location>sample string 5</location>
  <member_id>86a56bef-0450-4efe-96fc-c359542d863f</member_id>
  <round_id>0da6ece6-77c2-435a-a1fb-42f56e76de6b</round_id>
</AchievementDetails>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.