Retrieve Tracking Fields via the API

Is there anyway to get the tracking fields of a meeting via the API? I’m not seeing it documented anywhere.

If not, that may be a feature Zoom should consider especially since fields like these are used extensively when automating.

Hey @ddechant,

Have you seen our List Tracking Fields API?

https://marketplace.zoom.us/docs/api-reference/zoom-api/trackingfield/trackingfieldlist

Let me know if that helps! :slight_smile:

Thanks,
Tommy

hey thanks @tommy

I had seen that, I guess what i’m looking for is something like
users/{userId}/meetings/tracking_fields
or
users/{userId}/meetings?include=tracking_fields
or
users/{userId}/meetings?tracking_field=project_number

so i can programmatically get the fields per meeting…

one use case: i need to get all of a user’s meetings with tracking_field: project_number={projectNumber} so we could accurately bill the client…

i would hope any of the above would have a structure of

meeting: {
  <meeting data>
  tracking_fields: {
    <tracking_fields data>
  }
}

I’m guessing the zoom api currently does not have that functionality, correct?

Hey @ddechant,

The Tracking Fields are including in the Get Meeting endpoint.

Screen Shot 2020-01-16 at 10.35.02 AM

Does that help?

Thanks,
Tommy

yes, thank you @tommy!

1 Like

Great! :slight_smile:

Thanks,
Tommy