My Project
  1. User
My Project
  • local
    • Auth
      • 회원 탈퇴
      • 토큰 재발급
      • 소셜 가입
    • User
      • 정보 조회
        GET
      • 추가 정보 가입
        POST
      • 닉네임 중복 검사
        GET
      • 회원 정보 수정
        PATCH
  • dev
    • Auth
      • 탈퇴
      • 토큰 재발급
      • 소셜 가입
    • User
      • 정보 조회
      • 추가 정보 가입
      • 닉네임 중복 검사
      • 회원 정보 수정 Copy
      • 회원가입 태그 데이터 반환
      • 추천 게시물 키워드 편집
    • board
      • 게시글 작성
      • 내가 쓴 글 조회
      • 게시글 저장하기
      • 게시글 저장 취소
      • 저장한 게시글 조회
    • DotoriToken
      • 도토리 내역 조회
      • 도토리 개수 조회
      • 도토리 선물하기
  1. User

추가 정보 가입

Developing
POST
http://localhost:8080/api/v1/user

Request

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

Body Params multipart/form-data

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://localhost:8080/api/v1/user' \
--form 'signInUserRequest="{  \"nickname\": \"홍길동\",  \"job\": \"백엔드 개발\",  \"personalHistory\": \"6~9년\",  \"corporateForm\": \"대기업\",  \"myStatus\": [    \"대학생\",    \"구직중\"  ],  \"simpleIntroduce\": \"안녕하세요, 백엔드 개발자 홍길동입니다.\",  \"boardKeywords\": [    \"멘토 찾아요\",    \"인사이트\"  ]}"' \
--form 'profileImage=@"/Users/Sunro1994/Desktop/images.jpeg"'

Responses

🟢200OK
application/json
Body

Example
{
    "code": 0,
    "message": "string",
    "data": {
        "id": 0,
        "name": "string",
        "nickname": "string",
        "profileImage": "string",
        "phoneNumber": "string",
        "simpleIntroduce": "string",
        "dotoriTokenAmount": 0,
        "boardKeywordList": [
            "string"
        ],
        "personalHistory": "string",
        "myStatus": [
            "string"
        ],
        "corporateForm": "string",
        "userJob": "string"
    }
}
Modified at 2025-02-27 09:07:50
Previous
정보 조회
Next
닉네임 중복 검사
Built with