mandamong
  1. user
mandamong
  • before-auth
    • user
      • 닉네임 중복 검증
      • 이메일 중복 검증
      • 이메일 인증 요청
      • 이메일 검증
      • 기본 회원가입
    • auth
      • 로그인
      • AT 갱신 (RTR)
  • after-auth
    • mandalart
      • 주제 입력으로 목표, 행동 생성
      • 목표 입력으로 행동 생성
      • 만다르트 표 저장
      • 만다르트 이름 수정
      • 만다르트 주제 수정
      • 만다라트 목표 수정
      • 만다라트 행동 수정
      • 만다르트 행동 상태 수정
      • 만다르트 표 다건 조회
      • 만다르트 표 단건 조회
      • 만다르트 표 삭제
    • user
      • 닉네임 변경
        PATCH
      • 비밀번호 검증
        POST
      • 비밀번호 변경
        PATCH
      • 비밀번호 초기화
        PATCH
      • 탈퇴
        DELETE
    • auth
      • 로그아웃
  1. user

비밀번호 변경

PATCH
https://mandamong-dev.sailin.cloud/api/user/password
Last modified:2025-07-23 10:18:11
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://mandamong-dev.sailin.cloud/api/user/password' \
--header 'Content-Type: application/json' \
--data-raw '{
	"updated": "updated"
}'
Response Response Example
{
    "success": true,
    "payload": null,
    "error": null
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200OK
application/json
Body

Modified at 2025-07-23 10:18:11
Previous
비밀번호 검증
Next
비밀번호 초기화
Built with