# Upload user picture Uploads the profile picture of the authenticated user by JWT. Endpoint: POST /users/me/picture Version: v1 Security: Bearer ## Request fields (multipart/form-data): - `picture` (string, required) User's avatar file. Maximum sixe: 20 MB. Supported formats: PNG, JPG. ## Response 200 fields (application/json): - `picture` (string, required) CDN link with the user image. Example: "https://someurl.com/avatar1fjf1we1f8swe9ln.jpg" ## Response 400 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information. ## Response 403 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information. ## Response 404 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information. ## Response 415 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information.