updateExhibitor
The updateExhibitor GraphQL mutation updates exhibitor details within a specific gathering.
Arguments
- gatheringId: Int! - The gathering identifier.
- id: Int! - The exhibitor identifier within the gathering.
- attendee: ExhibitorParams - The input object containing exhibitor details.
GraphQL Mutation
mutation {
updateExhibitor(exhibitor: {name: "OmniCorp" }, gatheringId: 232, id: 71111) {
name
id
}
}
CURL Request
curl -X POST https://api.certaintouchpoint.com/graphql -H 'Content-Type: application/graphql' -H 'Authorization: Bearer 123abcveryLongAuthorizationToken456def' -d '{ mutation { updateExhibitor(exhibitor: { name: "OmniCorp"}, gatheringId: 232, id: 71111) { name id } }'
GraphQL Response
{
"data": {
"updateExhibitor": {
"name": "OmniCorp",
"id": "71111"
}
}
}
ExhibitorParams
- name (String!) Display name of exhibitor.
- email (String) Contact email for exhibitor.
- description (String) Description for exhibitor. HTML supported.
- website (String) Website URL for exhibitor.
- location (LocationParams) Location name. Note that Location params are structured { name: "Booth 42" }
Related articles
- deleteExhibitor