Skip to content

[POST] 꿈 기록 작성

Kim HyunJi edited this page May 22, 2021 · 2 revisions
메소드 경로 설명
POST /api/posts/ 꿈 기록 작성

요청 헤더

{
    "Content-Type": "application/json",
    "x-auth-token" : "{jwt}"
}

요청 바디

key 설명 타입 비고
content 꿈 기록 내용 String Not Null
emoji 꿈에 대한 기분 이모티콘 파일명 String Not Null

응답 바디

key 설명 타입 비고
status 상태 코드 Number
id 유저 아이디 String
date 꿈 기록 날짜 String
content 꿈 기록 내용 String
emoji 꿈 기록 이모티콘 파일명 String
keyword 꿈 해몽할 키워드 String
readings 키워드 해몽 내용 String

성공

{
	"status": 200,
	"data": {
		"id": 0,
		"date": "2021.05.23",
		"content" : "우왕 나 돼지꿈 꿈 ㅋ 부자될건가바",
		"emoji": "Emoji.png",
		"dreamReadings": [
			{
				"keyword": "돼지",
				"readings": "부자꿈",
			}, ...
		]
	}
}

실패

  • 서버 에러

    {
        "status": 500,
        "message": "Server Error"
    }