modpanel-config
  1. Profile
modpanel-config
  • Health
    • Liveliness
      GET
    • Readiness
      GET
  • Auth
    • Register
      • RegisterStart
      • RegisterVerify
      • RegisterComplete
    • Password
      • PasswordResetStart
      • PasswordResetVerify
      • PasswordResetConfirm
      • PasswordChange
    • Contacts
      • EmailChangeStart
      • EmailChangeVerify
      • PhoneChangeStart
      • PhoneChangeVerify
    • Login
      POST
    • Refresh
      POST
    • Logout
      POST
  • Profile
    • ProfileRead
      GET
    • ProfileUpdate
      PATCH
    • ProfileDelete
      DELETE
    • CityList
      GET
  • Projects
    • ProjectList
      GET
    • TagList
      GET
    • ProjectCreate
      POST
    • ProjectRead
      GET
    • ProjectUpdate
      PATCH
    • ProjectDelete
      DELETE
    • ProjectDuplicate
      POST
    • ProjectExport
      GET
    • ProjectImport
      POST
    • ProjectsArchivedRestore
      POST
    • ProjectsArchivedDelete
      DELETE
  • Public
    • PublicProject
      GET
    • PublicProjectExport
      GET
  • Schemas
    • Auth
      • Register
        • RegisterVerifyResponse
        • RegisterCompleteRequest
      • Password
        • PasswordResetVerifyResponse
        • PasswordResetConfirmRequest
        • PasswordChangeRequest
      • Contacts
        • EmailChangeRequest
        • PhoneChangeRequest
      • LoginRequest
      • AccessRefreshTokens
      • RefreshToken
      • AccessToken
      • EmailPhone
      • OTP
    • Profile
      • ProfileResponse
      • ProfileUpdateRequest
      • CityListItem
      • CityListResponse
    • Projects
      • ProjectCreateRequest
      • ProjectResponse
      • ProjectUpdateRequest
      • ProjectListItem
      • ProjectListResponse
      • TagList
    • Shared
      • PydanticValidationError
      • StatusOk
    • ApiError
  1. Profile

ProfileUpdate

Developing
PATCH
/profile
Обновление информации о собственном профиле

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

🟠401
🟠403
🟠422
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/profile' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "first_name": "string",
    "last_name": "string",
    "patronymic": "string",
    "city_id": "4e4d55fa-e3bf-4bdb-9825-519278b117b5",
    "show_tips": true
}'
Response Response Example
200 - Example 1
{}
Modified at 2026-02-04 13:42:46
Previous
ProfileRead
Next
ProfileDelete
Built with