HTTP Status Code
- 2xx
- 200 OK
- 201 Created : 일반적으로 POST 요청 또는 일부 PUT 요청 이후
- 204 No Content : 요청에 대해서 보내줄 수 있는 콘텐츠가 없지만, 헤더는 의미있음
- 4xx
- 400 Bad Request
- 401 Unauthorized : 클라이언트가 인증이 안되서(unauthenticated) 작업을 진행할 수 없음
- 403 Forbidden : 클라이언트가 권한이 없기 때문에 작업을 진행할 수 없는 경우
- 404 Not Found : 요청한 자료/경로 없음
- 405 Method Not Allowed : 자원(URI)은 존재하지만 해당 자원이 지원하지 않는 메소드일 때
- 5xx
- 500 Server Error
Domain
젤리
- user
- follow
- management
헤이
- reservation
- court
- favorite
플로라
- alarm
- chat
slam domain 상세
courts
[POST] /api/v1/courts/{userId}/newfavorites
[GET] /api/v1/favorites/{userId}[POST] /api/v1/favorites[DELETE] /api/v1/favorites/{favoriteId}reservations
[GET] /api/v1/reservations/{userId}/expired[GET] /api/v1/reservations/{userId}/upcoming[POST] /api/v1/reservations[PATCH] /api/v1/reservations/{reservationId}[DELETE] /api/v1/reservations/{reservationId}alarms
[GET] /api/v1/alarms/{userId}[POST] /api/v1/alarmschat
[GET] /api/v1/chat/{userId}[GET] /api/v1/chat/{chat_title_id}[POST] /api/v1/chat/(web socket 처리) 채팅 내용 추가management
[GET] /api/v1/courts/new?status=${status}[GET] /api/v1/courts[POST] /api/v1/courts[DELETE] /api/v1/courts추가
[POST] api/v1/users/images[DELETE] api/v1/users/{userId}/images[POST] api/v1/court/images