4 years ago.
Updated.
Arguments
gatheringId
- Type: (Int!)
id
- Type: (Int!)
attendee
- Type: (ExhibitorParams)
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
- Type: (String!)
- Description: Display name of exhibitor.
- Type: (String)
- Description: Contact email for exhibitor.
description
- Type: (String)
- Description: Description for exhibitor.
- HTML supported.
website
- Type: (String)
- Description: Website URL for exhibitor.
location
- Type: (LocationParams)
- Description: Location name.
- Note: Location params are structured { name: "Booth 42" }