action zoom_get_tracking_sources { label: "Get webinar tracking sources" description: "[Webinar Registration Tracking Sources](https://support.zoom.us/hc/en-us/articles/360000315683-Webinar-Registration-Source-Tracking) allow you to see where your registrants are coming from if you share the webinar registration page in multiple platforms. You can then use the source tracking to see the number of registrants generated from each platform.
Use this API to list information on all the tracking sources of a Webinar.
\n**Scopes:** `webinar:read:admin`, `webinar:read`
\n \n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Medium`
\n**Prerequisites**:
\n* [Webinar license](https://zoom.us/webinar).\n* Registration must be required for the Webinar.\n" provider: zoom method: GET path: "/webinars/{webinarId}/tracking_sources" encoding: json input: { type: "object" properties: { webinarId: { type: "integer" format: "int64" } } required: ["webinarId"] additionalProperties: false } output: { type: "object" properties: { total_records: { type: "integer" description: "The total number of registration records for this Webinar." } tracking_sources: { type: "array" description: "Tracking Sources object." items: { type: "object" properties: { id: { type: "string" description: "Unique Identifier of the tracking source." } registration_count: { type: "integer" description: "Number of registrations made from this source." } source_name: { type: "string" description: "Name of the source (platform) where the registration URL was shared." } tracking_url: { type: "string" description: "Tracking URL. The URL that was shared for the registration." } visitor_count: { type: "integer" description: "Number of visitors who visited the registration page from this source." } } } } } } }