Rianshin

[MSteams]연동 - 일정삭제 본문

Develop/Front-End

[MSteams]연동 - 일정삭제

RianShin 2023. 1. 17. 09:44
728x90
반응형
SMALL

MsTeams의 일정삭제하는 방법은 

일정을 생성했던 API를 호출하는데 뒤에 delete만 넣어주면된다.

단, 생성했던 일정의 id값은 알고 있어야 한다.

deleteEvent : async function(eventId){
                    try {
                    POST the JSON to the /me/events endpoint
                    await graphClient
                        .api('/me/events/'+eventId)
                        .delete();
                    Return to the calendar view
                    this.getEvents();
                    } catch (error) {
                         console.log('deleteEvent error : ' + error)
                    }
                }

 

728x90
반응형
LIST
Comments