Skip to content

단어등록 서버등록용

석영현 edited this page Dec 15, 2020 · 5 revisions

단어등록-서버등록용

메소드 경로 설명
POST /word 단어등록-서버등록용

요청 헤더

Content-Type: multipart/form-data

요청 바디

{
   "category" : "과일",
   "w_eng" : "apple",
   "w_kor" : "사과",
   "w_img" : "AR.jpg",
   "audio_eng" : "apple_eng.mp3",
   "audio_kor" : "apple_kor.mp3
}

응답 바디

SUCCESS : 단어등록 성공

{
    "status": 200,
    "success": true,
    "message": "단어등록 성공"
}

FAIL : 단어등록 실패

{
    "status": 200,
    "success": false,
    "message": "단어등록 실패"
}