GET {{baseUrl}}/past_webinars/:webinarId/absentees?occurrence_id=<string>&page_size=30&next_page_token=<string>
List absentees of a webinar. Scopes: Rate Limit Label: webinar:read:admin
,webinar:read
HEAVY
Body
PARAM
Key | Datatype | Required | Description |
occurrence_id
|
string | The meeting or webinar occurrence ID. | |
page_size
|
number | The number of records returned within a single API call. | |
next_page_token
|
string | Use the next page token to paginate through large result sets. A next page token is returned whenever the set of available results exceeds the current page size. This token's expiration period is 15 minutes. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"next_page_token": "<string>",
"page_count": "<integer>",
"page_number": 1,
"page_size": 30,
"total_records": "<integer>",
"registrants": [
{
"email": "<email>",
"first_name": "<string>",
"id": "<string>",
"address": "<string>",
"city": "<string>",
"comments": "<string>",
"country": "<string>",
"custom_questions": [
{
"title": "<string>",
"value": "<string>"
},
{
"title": "<string>",
"value": "<string>"
}
],
"industry": "<string>",
"job_title": "<string>",
"last_name": "<string>",
"no_of_employees": "",
"org": "<string>",
"phone": "<string>",
"purchasing_time_frame": "More than 6 months",
"role_in_purchase_process": "Not involved",
"state": "<string>",
"status": "approved",
"zip": "<string>",
"create_time": "<dateTime>",
"join_url": "<string>"
},
{
"email": "<email>",
"first_name": "<string>",
"id": "<string>",
"address": "<string>",
"city": "<string>",
"comments": "<string>",
"country": "<string>",
"custom_questions": [
{
"title": "<string>",
"value": "<string>"
},
{
"title": "<string>",
"value": "<string>"
}
],
"industry": "<string>",
"job_title": "<string>",
"last_name": "<string>",
"no_of_employees": "101-250",
"org": "<string>",
"phone": "<string>",
"purchasing_time_frame": "1-3 months",
"role_in_purchase_process": "Decision Maker",
"state": "<string>",
"status": "denied",
"zip": "<string>",
"create_time": "<dateTime>",
"join_url": "<string>"
}
]
} |
ENDPOINTS