Exhibitors Query
Last updated: 3 months ago.
Arguments
- gatheringId: (Int!)
- filters: (Filter)
- createdAfter: (Date!) Returns resources created at or after the specified datetime (inclusive). Datetime must be in ISO 8601 format.
- createdBefore: (Date!) Returns resources created at or before the specified datetime (inclusive). Datetime must be in ISO 8601 format.
- updatedAfter: (Date!) Returns resources updated at or after the specified datetime (inclusive). Datetime must be in ISO 8601 format.
- updatedBefore: (Date!) Returns resources updated at or before the specified datetime (inclusive). Datetime must be in ISO 8601 format.
CURL Request
curl -X POST https://api.certaintouchpoint.com/graphql -H 'Content-Type: application/graphql' -H 'Authorization: Bearer 123abcveryLongAuthorizationToken456def' -d '{exhibitors(gatheringId: 232) {name}}'
Query Example
{
exhibitors(gatheringId: 232) {
name
email
id
website
description
location
createdAt
updatedAt
}
}
CURL Request
curl -X POST https://api.certaintouchpoint.com/graphql -H 'Content-Type: application/graphql' -H 'Authorization: Bearer 123abcveryLongAuthorizationToken456def' -d '{ exhibitors(gatheringId: 232) { name email id website descrtipion }}'
ExhibitorParams
Attributes
| Attribute | Type | Description |
|---|---|---|
| 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" } |
| createdAt | Date! | Timestamp indicating when the resource was created. Returned in ISO 8601 UTC format. |
| updatedAt | Date | Timestamp indicating when the resource was last updated. Returned in ISO 8601 UTC format. |
Was this article helpful? 0 out of 0 found this helpful
Have more questions? Submit a request
Related articles
- Attendees Query
- Overview - Touchpoint API
- Gatherings Query
- Agenda Sessions Query
Comments 0 comments Please sign in to leave a comment.