deleteSpeaker

deleteSpeaker documents the GraphQL mutation to remove a speaker from a gathering.

The page is part of Touchpoint API usage documentation.

Arguments

GraphQL Mutation

mutation {
deleteSpeaker(gatheringId: 232, id: 71111)
}

CURL Request

curl -X POST https://api.certaintouchpoint.com/graphql -H 'Content-Type: application/graphql' -H 'Authorization: Bearer 123abcveryLongAuthorizationToken456def' -d '{ mutation { deleteSpeaker(gatheringId: 232, id: 71111) }'

GraphQL Response

{ "data":
{ "deleteSpeaker":
{ "id": "972795"
}
}
}