Mutation
mutation CompleteLiveSpace($input: CompleteLiveSpaceInput!) {
completeLiveSpace(input: $input) {
clientMutationId
errors
liveSpace {
createdAt
creator {
ambassadorLevel
ambassadorLevelId
avatarUrl
badges {
__typename
}
conversations {
__typename
}
customFieldResponses {
__typename
}
}
eventInstanceAt
eventInstanceStartsAt
eventPost {
__typename
... on Event {
__typename
}
}
id
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"completeLiveSpace": {
"clientMutationId": "string",
"errors": [
"string"
],
"liveSpace": {
"createdAt": "value",
"creator": {
"ambassadorLevel": "string",
"ambassadorLevelId": 1,
"avatarUrl": "string",
"badges": [
{
"__typename": "Badge"
}
],
"conversations": {
"__typename": "PublicConversationConnection"
},
"customFieldResponses": {
"__typename": "MemberCustomFieldResponseConnection"
}
},
"eventInstanceAt": "value",
"eventInstanceStartsAt": "value",
"eventPost": {
"__typename": "Event"
},
"id": "id"
}
}
}
}Mutations
completeLiveSpace
End a livestream and stop it consuming the Network’s streaming hours. A livestream that never went live is aborted; one that is broadcasting is stopped, disconnecting its attendees, and its recording (if any) starts processing. Ending an already-ended livestream succeeds and changes nothing. Returns the livestream in its post-transition state.
Required scope: host:write:network_spaces
MUTATION
completeLiveSpace(input: CompleteLiveSpaceInput!): CompleteLiveSpacePayloadArguments
input
required
Parameters for CompleteLiveSpace
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
liveSpace
Mutation
mutation CompleteLiveSpace($input: CompleteLiveSpaceInput!) {
completeLiveSpace(input: $input) {
clientMutationId
errors
liveSpace {
createdAt
creator {
ambassadorLevel
ambassadorLevelId
avatarUrl
badges {
__typename
}
conversations {
__typename
}
customFieldResponses {
__typename
}
}
eventInstanceAt
eventInstanceStartsAt
eventPost {
__typename
... on Event {
__typename
}
}
id
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"completeLiveSpace": {
"clientMutationId": "string",
"errors": [
"string"
],
"liveSpace": {
"createdAt": "value",
"creator": {
"ambassadorLevel": "string",
"ambassadorLevelId": 1,
"avatarUrl": "string",
"badges": [
{
"__typename": "Badge"
}
],
"conversations": {
"__typename": "PublicConversationConnection"
},
"customFieldResponses": {
"__typename": "MemberCustomFieldResponseConnection"
}
},
"eventInstanceAt": "value",
"eventInstanceStartsAt": "value",
"eventPost": {
"__typename": "Event"
},
"id": "id"
}
}
}
}