deleteExhibitor is a GraphQL mutation.
The mutation deletes an exhibitor from a gathering.
Arguments
- gatheringId: (Int!)
- id: (Int!)
GraphQL Mutation
mutation {
deleteExhibitor(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 { deleteExhibitor(gatheringId: 232, id: 71111) }'
GraphQL Response
{ "data":
{ "deleteExhibitor":
{ "id": "972795"
}
}
}
Related articles
- Checkin Query