Withdraw Meeting
To use the API to withdraw any meeting that the user has created, you will need to use the following API request.
mutation withdrawMeeting($componentId: ID!, $meetingId: ID!){
component(id: $componentId) {
...on MeetingsMutation{
meeting(id: $meetingId) {
withdraw(input: {}) {
id
}
}
}
}
}
Example of submitted variables
{
"componentId": "9",
"meetingId": "2"
}