REST API - Add a webinar registrant

I am having the following problem

When I want to add a record to a webinar, it records it BUT NOT ON THE WEBINAR I CHOOSE

I register for the webinar occurrence_id 4836817008000, but the API response is that it registers me for the webinar occurrence_id 1686855600000, which is another date

I send you the JSON that I send to the API

{\n “email”: “braulio000@gmail.com”,\n “first_name”: “braulio”,\n “last_name”: “braulio”,\n “address”: “”,\n “city”: “”,\n “country”: “”,\n “zip”: “”,\n “state”: “”,\n “phone”: “0303456”,\n “industry”: “”,\ n “org”: “”,\n “job_title”: “”,\n “purchasing_time_frame”: “”,\n “role_in_purchase_process”: “”,\n “no_of_employees”: “”,\n “comments”: “”,\n “custom_questions”: [\n {\n “title”: “Company Name”,\n “value”: “test”\n }\n ],\n “source_id”: " 3516709478244",\n “uuid”: “83085171987”,\n “occurrence_id”: “4836817008000”,\n “token”: “MY_TOKEN_HIDDEN”\n}

I send you the response that the API returns

{‘registrant_id’: ‘weE31zbFQ8O7b8SM0ZGMEQ’, ‘id’: 83085171987, ‘topic’: ‘PEPs’, ‘start_time’: ‘2023-07-20T14:00:00Z’, ‘join_url’: ‘https://nosis. Launch Meeting - Zoom’, ‘occurrences’: [{‘occurrence_id’ : ‘1686855600000’, ‘start_time’: ‘2023-06-15T19:00:00Z’, ‘duration’: 60 , ‘status’: ‘available’}]}

I send you the URL that I consult

https://api.zoom.us/v2/webinars/83085171987/registrants?occurrence_id=483681700800

EXPECTED RESPONSE

{‘registrant_id’: ‘weE31zbFQ8O7b8SM0ZGMEQ’, ‘id’: 83085171987, ‘topic’: ‘PEPs’, ‘start_time’: ‘2023-07-20T14:00:00Z’, ‘join_url’: ‘https://nosis. Launch Meeting - Zoom’, ‘occurrences’: [{‘occurrence_id’ : ‘4836817008000’, ‘start_time’: ‘2023-06-15T19:00:00Z’, ‘duration’: 60 , ‘status’: ‘available’}]}

THIS HAPPENS TO ME WITH ALL MY WEBINARS

The Add a webinar registrant documentation states that the URL query string parameter should be occurrence_ids (plural), not occurrence_id (singular) as used in your example URL.

Thanks for catching that @MultiplayerSession , appreciate your contributions to our developer platform!

Additionally @Nosis , can you please confirm the type of registration settings enabled?