Public
Documentation Settings

일정 관리

일정

POST일정 저장

localhost:8080/api/schedules
Bodyraw (json)
json
{
    "username": "name",
    "description": "description",
    "password": 1234
}
Example Request
curl
curl --location 'localhost:8080/api/schedules' \
--data '{
    "username": "name",
    "description": "description",
    "password": 1234
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GET일정 전체 조회

localhost:8080/api/schedules
Example Request
curl
curl --location 'localhost:8080/api/schedules'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GET일정 조건 조회

localhost:8080/api/schedules/byConditions

사용자명이나 수정일이 비어있어도 요청 가능

PARAMS
username

username

date

2024-10-04

Example Request
curl
curl --location 'localhost:8080/api/schedules/byConditions'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GET일정 단일 조회

localhost:8080/api/schedules/:id
PATH VARIABLES
id

2

Example Request
curl
curl --location 'localhost:8080/api/schedules/2'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers