meetings
Available Methods​
- [GET, POST]
GET: /v2/public/zoom/meetings/{meetingId}​
info
This is a public endpoint to retrieve a meetings specifics.
- base
- localhost
- dev
- prod
/v2/public/zoom/meetings/{meetingId}
http://localhost:1350/v2/public/zoom/meetings/{meetingId}
https://dev.everdays.com/v2/public/zoom/meetings/{meetingId}
https://everdays.com/v2/public/zoom/meetings/{meetingId}
Returns​
Meeting specifics and occurrences.
Example return
data: {
"uuid": "Gj723rdgy8huX34t3fHB4OOxa==",
"id": 4564823456,
"host_id": "dODHJSDy9vSc-T8YBUNpqbw",
"host_email": "user@everdays.com",
"assistant_id": "",
"topic": "Everdays Training",
"type": 8,
"status": "waiting",
"timezone": "America/New_York",
"agenda": "Learn more about our software and see how our fully digital end-of-life planning and insurance platform opens up new commission opportunities for your business.",
"created_at": "2025-01-14T18:53:32Z",
"start_url": "https://everdays.zoom.us/s/144567252?zak=eyJ0eXAiOiJKV1QiLCJzdiI6IjAwMDAwMSIsInptX3NrbSI6InptX28ybSIsImFsZyI6IkhTMjU2In0.eyJpc3MiOiJ3ZWIiLCJjbHQiOjAsIm1udW0iOiI4NDk0OTc2NTQzMiIsImF1ZCI6ImNsaWVudHNtIiwidWlkIjoiZE9ZQVp5OXZTYy1UOG1TbG96cHFidyIsInppZCI6IjM5NjI1MTE3ZWYzZDQ4ZGNiMzc3ODNmODcwMTMzYjY5Iiwic2siOiI1MjgyMjc3MDQ4NzE5NjI3NDQ0Iiwic3R5IjoxMDAsIndjZCI6InVzMDYiLCJleHAiOjE3MzcxNDI0NDksImlhdCI6MTczNzEzNTI0OSwiYWlkIjoiUjFlbDU0TnhTRFNpcG1NelIxNEFMQSIsImNpZCI6IiJ9._0EMBI3Rxc_ECRoYvEeYD0nDNtNWet3kb5ndRba-0sM",
"join_url": "https://everdays.zoom.us/j/144567252",
"registration_url": "https://everdays.zoom.us/meeting/register/ok374g83h-FB3rV6t7q_Q",
"occurrences": [
{
"occurrence_id": "124866758000",
"start_time": "2025-01-21T20:00:00Z",
"duration": 60,
"status": "available"
},
{
"occurrence_id": "124866758001",
"start_time": "2025-01-22T20:00:00Z",
"duration": 60,
"status": "available"
},
{
"occurrence_id": "124866758002",
"start_time": "2025-01-24T20:00:00Z",
"duration": 60,
"status": "available"
},
{
"occurrence_id": "124866758003",
"start_time": "2025-01-28T20:00:00Z",
"duration": 60,
"status": "available"
},
{
"occurrence_id": "124866758004",
"start_time": "2025-01-29T20:00:00Z",
"duration": 60,
"status": "available"
},
]
}
POST: /v2/public/zoom/meetings/{meetingId}/{occurrenceId}​
info
This is a public endpoint to register a user to a meeting at a specific occurrence.
- base
- localhost
- dev
- prod
/v2/public/zoom/meetings/{meetingId}/{occurrenceId}
http://localhost:1350/v2/public/zoom/meetings/{meetingId}/{occurrenceId}
https://dev.everdays.com/v2/public/zoom/meetings/{meetingId}/{occurrenceId}
https://everdays.com/v2/public/zoom/meetings/{meetingId}/{occurrenceId}
Params​
| Param | Type | Description |
|---|---|---|
first_name | String | The registrants first name. |
last_name | String | The registrants last name |
email | String | The registrants email |
Example request body
{
"first_name": "Test",
"last_name": "Zoom meeting api",
"email": "test909@everdays.com"
}
Returns​
Registrants id and info on onccurences they registered for.
Example return
data: {
"registrant_id": "Ckf83hBl-625724584",
"id": 67289542,
"topic": "Everdays Training",
"start_time": "2025-06-06T19:00:00Z",
"join_url": "https://everdays.zoom.us/w/2582507?tk=AEzsNoaoIE_nQA3Q-CFUTw6KyoACVI4D_yhpRT0c3K8.DQcAAAATx2aNOBZDazdobUJsLVJZNllkdVoxNW0yZmNRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"occurrences": [
{
"occurrence_id": "429574890000",
"start_time": "2025-01-21T20:00:00Z",
"duration": 60,
"status": "available"
}
]
}