회원 정보 조회

GET /api/member/{member-id}

본인 유저페이지 조회시 "myPage" : true
팔로우 한 회원 페이지 조회시 "followed" : true

Status Code

200: 회원 정보 조회
403: 권한 없음
404: 존재하지 않음
500: 서버 에러

Request Header

{
    "Authorization" : String
}

Response Body

{
    "memberId": 1,
    "email": "email@gmail.com",
    "name": "이름",
    "nickname": "닉네임",
    "phone": "010-0000-0000",
    "oauth": false,
    "introduction": null,
    "link": null,
    "profileImageUrl": "https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/754.jpg",
    "followerCount": 0,
    "followingCount": 0,
    "followed": false,
    "myPage": false,
    "verified": false,
    "createdAt": "2023-05-22T02:22:26.7933717",
    "modifiedAt": "2023-05-22T02:22:26.7933717"
}

Last updated