Zoom
Add Meeting Registrant
POST
/
projects
/
{project_id}
/
actions
/
#ZOOM_ADD_MEETING_REGISTRANT
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#ZOOM_ADD_MEETING_REGISTRANT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "ZOOM_ADD_MEETING_REGISTRANT",
"parameters": {
"meetingId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"address": "<string>",
"city": "<string>",
"country": "<string>",
"zip": "<string>",
"state": "<string>",
"phone": "<string>",
"organization": "<string>",
"jobTitle": "<string>"
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
Response
200
Success
Was this page helpful?
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#ZOOM_ADD_MEETING_REGISTRANT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "ZOOM_ADD_MEETING_REGISTRANT",
"parameters": {
"meetingId": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"address": "<string>",
"city": "<string>",
"country": "<string>",
"zip": "<string>",
"state": "<string>",
"phone": "<string>",
"organization": "<string>",
"jobTitle": "<string>"
}
}'