Update achievement info.
PUT /api/v1/achievement/test-01 HTTP/1.1
Authorization: Bearer ...
Content-Type: application/json
{
"name": "Test 01",
"description": "This is a test achievement!",
"visibilityStart": null,
"visibilityStop": null
}
----------------------------------------
HTTP/1.1 204 No ContentAuthentication is required and access is limited to admins.
| Name | Description | Value |
|---|---|---|
| key | the unique identifier of the achievement to update | string |
NONE
| Name | Description | Value |
|---|---|---|
| name | the name of the achievement | string |
| description | the description of the achievement | string |
| visibilityStart | if not null, the time after which this achievement should be generally visible; as a Unix timestamp | number or null |
| visibilityStop | if not null, the time after whcih this achievement should be no longer visible; as a Unix timestamp | number or null |
Successful responses are code 204. Error responses are standard.
NONE