Skip to content

Latest commit

 

History

History
73 lines (56 loc) · 1.69 KB

File metadata and controls

73 lines (56 loc) · 1.69 KB
copyright Copyright IBM Corp. 2018
link start-meeting
is experimental

Start a meeting within a space

Concepts

The startMeeting mutation allows the API caller to start a meeting with a space. The mutation accepts a Space ID (spaceId) as an argument, and makes the request on behalf of the caller, starting a meeting within the specified space. The result will reflect the whether the call was accepted for processing by the service.

Schema

Start Meeting Mutation

type MutationRoot {
  ...
  startMeeting(input: StartMeetingInput!): MeetingMutationOutput
}

type StartMeetingInput {
  spaceId: ID!
}

type MeetingMutationOutput {
  accepted: Boolean!
}

Field definitions

StartMeetingInput

|Name|Description|Schema| |---|---|---|---| |spaceId|Space ID of the space in which to start a meeting|String
required|

MeetingMutationOutput

|Name|Description|Schema| |---|---|---|---| |accepted|Whether the request to start a meeting was accepted for processing|Boolean
required|

Example Request

Method: POST
URL: https://api.watsonwork.ibm.com/graphql
Headers: 'Content-Type: application/graphql' , 'x-graphql-view: PUBLIC, EXPERIMENTAL'
Body:
{
  mutation {
    startMeeting(input: {spaceId : "5ad0fabfe4b078066d690a24"}) {
      accepted
    }
  }
}

Example Result

{
  "data": {
    "startMeeting": {
      "accepted": "true"
    }
  }
}

Try it out with our GraphQL tool - Start a meeting