Update the current user's account profile

PUT/api/v1/accounts/me

Parameters

This endpoint does not accept parameters.

Responses

200Account updated

Request

curl -X PUT "https://api.knowledgetree.dev/api/v1/accounts/me" \
  -H "Authorization: Bearer $KT_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "name": "Jane Doe", "timezone": "America/New_York", "avatar_url": "https://..." }'

Response

200Account updated
Example response not yet documented.