🦒비밀번호 변경, 찾기

비밀번호 찾기

POST https://pk-cog.url/newpwd/{position}

Request Body

Name
Type
Description

email*

String

사용자의 학교 email

stdID*

String

사용자의 학번

name*

String

사용자의 이름

RequestExample
{
    "email" : "hjk@naver.com",
    "stdID" : "20171261226",
    "name" : "HKJ"
}

비밀번호 변경

PATCH https://pk-cog.url/password

사용자의 비밀번호를 변경하기 위해 사용하는 API

Request Body

Name
Type
Description

inputNewPassword*

string

사용자의 새 비밀번호

inputPasswrod*

string

사용자의 현재 비밀번호

inputCheckNewPassword*

String

사용자의 새 비밀번호 확인

Request Example
{
    "password" : "asdasd",
    "newPassword" : "gkgkghgh12",
    "checkNewPassword" : "gkgkghgh23"
}

Last updated