Skip to content

프로필 수정

SuyeonChoi edited this page Jan 14, 2022 · 12 revisions

Profile update API

Request

Method

PUT

URL

/api/membership/profile/{profileId}

Header

Method Parameter Description
Content-Type application/json
token {token} access token값

Path Variable

Parameter Type Description Required
profileId Long 수정할 프로필 id Y

Body

Field Type Description Required
imageId Long 프로필 사진 id N
backgroundId Long 프로필 배경 사진 id N
sticker JSON Array 프로필에 사용된 스티커 리스트 N
description String 프로필 상태 메세지 N
isDefault boolean 기본 프로필 여부 Y

Response

Header

Method Parameter Description
statusCode {statusCode} http 상태 코드 값

Body

Field Type Description
code Integer 응답 코드
message String 응답 메세지
id Long 프로필 id

SUCCESS example

{
    "status": 200,
    "messsage": "프로필 수정 성공"
    "id": 1
}

Error Code

Code Error Messsage
400 Bad Request
401 Unauthorized
404 File Not Found
500 Server Error

FAIL example

{
    "status": 404,
    "message": "File Not Found"
}
Clone this wiki locally