Export leads
Object
My exhibitors
Retrieve all the leads i made during the event and all the qualifier questions.
Arguments
eventId
- The ID of the event; you can get it with the my exhibitors queryexhibitorId
- The ID of the exhibitor booth; you can get it with the my exhibitors query
Query
query myLeads($eventId: ID!, $exhibitorId: ID!) {
leads(eventId: $eventId, exhibitorId: $exhibitorId) {
contacts {
pageInfo {
endCursor
hasNextPage
}
nodes {
id
connectedAtEvent {
id
title
}
connectedAt
isScanned
rating
note
owner {
...PersonFragment
}
customFields {
...FieldsFragment
}
target {
... on Contact {
...PersonFragment
}
... on User {
...PersonFragment
}
}
}
}
}
}
fragment PersonFragment on PersonInterface {
id
email
firstName
lastName
jobTitle
secondJobTitle
photoUrl
organization
websiteUrl
biography
address {
city
country
place
state
street
zipCode
}
phoneNumber
socialNetworks {
profile
type
}
}
fragment FieldsFragment on FieldUnion {
__typename
... on SelectField {
id
value
definition {
name
id
}
}
... on NumberField {
id
numberValue: value
definition {
name
}
}
... on TextField {
id
value
definition {
name
}
}
... on UrlField {
id
value
definition {
name
}
}
... on MediaField {
id
value
definition {
name
}
}
... on LongTextField {
id
value
definition {
name
}
}
... on MultipleTextField {
id
value
definition {
name
}
}
... on MultipleSelectField {
id
value
definition {
name
id
}
}
... on DateField {
id
value
definition {
name
}
}
}
Variables
{
"eventId": "RXZlbnRfMjg1NzM=",
"exhibitorId": "RXhoaWJpdG9yXzU5NTIx"
}
Responses
{
"data": {
"leads": {
"contacts": {
"pageInfo": {
"endCursor": "WyIyMDI1LTA5LTAzVDEzOjI4OjMzLjAwMFoiLDExNjM0MV0=",
"hasNextPage": true
},
"nodes": [
{
"id": "Q29ubmVjdGlvbl8xMTYzNDE=",
"connectedAtEvent": {
"id": "RXZlbnRfMjg1NzM=",
"title": "Tech Event"
},
"connectedAt": "2025-09-03 15:28:33",
"isScanned": true,
"rating": 5,
"note": "Lead to contact urgently",
"owner": {
"id": "VXNlcl8yNDExNg==",
"email": "test1@gmail.com",
"firstName": "Test",
"lastName": "Test 1",
"jobTitle": "CPO",
"secondJobTitle": "",
"photoUrl": null,
"organization": "Swapcard",
"websiteUrl": "https://www.test.com",
"biography": null,
"address": {
"city": null,
"country": null,
"place": null,
"state": null,
"street": null,
"zipCode": null
},
"phoneNumber": null,
"socialNetworks": [
{
"profile": "GUIHO_R",
"type": "TWITTER"
}
]
},
"customFields": [
{
"__typename": "SelectField",
"id": "RmllbGRWYWx1ZV8zMzg3ODA=",
"value": "yes",
"definition": {
"name": "Interested by the Cloud offer ?",
"id": "RmllbGREZWZpbml0aW9uXzI0NzYyNg=="
}
},
{
"__typename": "MultipleSelectField",
"id": "RmllbGRWYWx1ZV8zMzg3ODI=",
"value": "1st-sept",
"definition": {
"name": "Should contacted the week of ?",
"id": "RmllbGREZWZpbml0aW9uXzI0NzYyNw=="
}
}
],
"target": {
"id": "VXNlcl8xNDc3MTg=",
"email": "test@gmail.com",
"firstName": "John",
"lastName": "Doe",
"jobTitle": null,
"secondJobTitle": null,
"photoUrl": null,
"organization": null,
"websiteUrl": null,
"biography": null,
"address": null,
"phoneNumber": null,
"socialNetworks": []
}
}
]
}
}
}
}