FullCalendar Event Restapi 입니다.
URI | Description | Attributes | Curl Example |
---|---|---|---|
/api/fcevent/{id} | FullCalendar event 정보를 가져옵니다 | id | curl -X GET -H "Authorization: Basic {TOKEN}" "https://openpipeline.io/api/fcevent/{id}" |
URI | Description | Attributes | Curl Example |
---|---|---|---|
/api/fcevent | FullCalendar event 정보를 추가합니다 | Option 참고 | curl -X POST -H 'Authorization: Basic {TOKEN}' -d '{"title":"일정이름","start":"2022-10-07", "end":"2022-10-08"}' "https://openpipeline.io/api/fcevent" |
URI | Description | Attributes | Curl Example |
---|---|---|---|
/api/fcevent/{id} | FullCalendar event 정보를 수정합니다 | 자료구조 참고 | curl -X PUT -H "Authorization: Basic {TOKEN}“ -d '{"title":"일정이름","start":"2022-10-07", "end":"2022-10-08"}' "https://openpipeline.io/api/fcevent/{id}" |
URI | Description | Attributes | Curl Example |
---|---|---|---|
/api/fcevent/{id} | FullCalendar event 정보를 삭제합니다. | id | curl -X DELETE -H "Authorization: Basic {TOKEN}" "https://openpipeline.io/api/fcevent/{id}" |
curl https://openpipeline.io/api/fcevent -v
HTTP/1.1 200 OK
< Access-Control-Allow-Methods: GET,POST,PUT,DELETE,OPTIONS
< Access-Control-Allow-Origin: *
< Date: Tue, 17 May 2022 02:10:41 GMT
< Content-Length: 0