이메일 인증 확인

이메일 인증 전송

[Postman 공용 아이디]

관리자

은행

은행 고객

예적금 상품

계좌

거래 내역

더미 데이터

Request, Response 템플릿

Request

MemberUpdateRequestDto{
	"name" : String,
	"password" : String,
	"nickname" : String, // 2 ~ 30 자 제한
	"link" : String,
	"email" : String,
	"description" : String,
	"feature" : String
}

Response

CommonResponseDto{
	"status": "SUCCESS", //FAIL
	"message": "성공적으로 생성했습니다."
	"data": {
		"roomId": Long,
		"managerId": String,
		"title": String,
		"description": String,
		"url": String,
		"roomImage": String
		"capacity": integer,
		"isLocked": boolean,
		"password": String, // null 가능
		"constraint": String, // VIDEOONMICOFF, VIDEOON, MICOFF, FREE 중 한개
		"createdAt": LocalDateTime
		"keywords": {
			"id": Long,
					"name" : String
	}
}
CommonResponseDto{
	"status": "FAIL", //Fail
	"message": "Internal Server Error", //이런 식으로 스프링에서 에러 뜨면 나오는 그거...
	"data": {
		"code": "AD100", //우리 커스텀 에러 코드 
		"message": "구체적인 에러 메시지"
	}
}