Close Meeting

To use the API to close any meeting that the user is authorized to close, you will need to use the following API request.

mutation closeMeeting($componentId: ID!, $meetingId: ID!, $input: CloseMeetingInput!){
  component(id: $componentId) {
    ...on MeetingsMutation{
      meeting(id: $meetingId) {
        close(input: $input) {
          id
          closed
          attendeesCount
          closingReport { translation(locale: "en") }
          closedAt
        }
      }
    }
  }
}

Example of submitted variables

{
  "componentId": "9",
  "meetingId": "2",
  "input": {
    "locale": "en",
    "attributes": {
      "closingReport": "Your closing report",
      "attendeesCount": 12,
      "proposalIds": ["1","2","3"]
    }
  }
}