POST /meetings/{meetingId}/registrants

Register a participant for a meeting.

Note that there is a maximum limit of 4999 registrants per meeting and users will see an error if the capacity has reached.

Prerequisite:

Scopes: meeting:write:admin meeting:write Rate Limit Label: Light

Servers

Path parameters

Name Type Required Description
meetingId Integer Yes

The meeting ID in long format. The data type of this field is "long"(represented as int64 in JSON).

While storing it in your database, store it as a long data type and not as an integer, as the Meeting IDs can be longer than 10 digits.

Request headers

Name Type Required Description
Content-Type String Yes The media type of the request body.

Default value: "application/json"

Query parameters

Name Type Required Description
occurrence_ids String No

Occurrence IDs. You can find these with the meeting get API. Multiple values separated by comma.

Request body fields

Name Type Required Description
job_title String No

Registrant's job title.

auto_approve Boolean No
no_of_employees String No

Number of Employees:
1-20
21-50
51-100
101-500
500-1,000
1,001-5,000
5,001-10,000
More than 10,000

role_in_purchase_process String No

Role in Purchase Process:
Decision Maker
Evaluator/Recommender
Influencer
Not involved

industry String No

Registrant's Industry.

first_name String Yes

Registrant's first name.

custom_questions[] Array No

Custom questions.

custom_questions[].title String No
custom_questions[].value String No
state String No

Registrant's State/Province.

city String No

Registrant's city.

purchasing_time_frame String No

This field can be included to gauge interest of webinar attendees towards buying your product or service.

Purchasing Time Frame:
Within a month
1-3 months
4-6 months
More than 6 months
No timeframe

email String Yes

A valid email address of the registrant.

last_name String No

Registrant's last name.

zip String No

Registrant's Zip/Postal Code.

org String No

Registrant's Organization.

phone String No

Registrant's Phone number.

country String No

Registrant's country. The value of this field must be in two-letter abbreviated form and must match the ID field provided in the Countries table.

address String No

Registrant's address.

comments String No

A field that allows registrants to provide any questions or comments that they might have.

language String No

Registrant's language preference for confirmation emails. The value can be one of the following: en-US,de-DE,es-ES,fr-FR,jp-JP,pt-PT,ru-RU,zh-CN, zh-TW, ko-KO, it-IT, vi-VN.

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. Search for the API you want to integrate with and click on the name.
    • This loads the API reference documentation and prepares the Http request settings.
  3. Click Test request to test run your request to the API and see the API's response.