Skip to main content
PATCH
/
api
/
training
/
snapshots
/
{id}
Update a training snapshot
curl --request PATCH \
  --url https://your-instance.example.com/api/training/snapshots/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "notes": "<string>",
  "tags": [
    "<string>"
  ],
  "quality": "<string>",
  "category": "<string>",
  "isArchived": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
notes
string
tags
string[]
quality
string

Quality rating, e.g. "good", "bad", "neutral"

category
string
isArchived
boolean

Response

Training snapshot updated successfully

Generic response envelope. Endpoint-specific fields are intentionally open.