Is it possible to create a registration after a Zoom events webinar has ended

We are using webinars in Zoom Events and want to create registrations after the webinar has ended so new attendees can access the recording on-demand.

When using /zoom_events/events/{eventId}/tickets to create a registration after the webinar has ended we are getting:
code status code 400,
error code 26401 The ticket sale dates are invalid

I assume this is due to the webinar having ended. It is still possible to create a registration via a join link , import via a CSV or add manually but is there any way to create a registration for a Zoom Event Webinar after it has finished using the api?

Perhaps you can create a recording registrant (POST /meetings/{meetingId}/recordings/registrants) instead of modifying ticket sales transaction data? I don’t have direct experience with that API — we usually retrieve the recording files directly (GET /meetings/{meetingId}/recordings) and send those links since we’re not as concerned about access control.

1 Like

@MultiplayerSession Thanks. I’ll looking that.