| copyright | Copyright IBM Corp. 2018 |
|---|---|
| link | start-meeting |
| is | experimental |
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.
type MutationRoot {
...
startMeeting(input: StartMeetingInput!): MeetingMutationOutput
}
type StartMeetingInput {
spaceId: ID!
}
type MeetingMutationOutput {
accepted: Boolean!
}|Name|Description|Schema|
|---|---|---|---|
|spaceId|Space ID of the space in which to start a meeting|String
required|
|Name|Description|Schema|
|---|---|---|---|
|accepted|Whether the request to start a meeting was accepted for processing|Boolean
required|
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
}
}
}
{
"data": {
"startMeeting": {
"accepted": "true"
}
}
}
Try it out with our GraphQL tool - Start a meeting