with JWT authentication, we are trying to add meeting registrant using the following API end point:
POST /v2/meetings/{meetingId}/registrants
{ “email”:"jdoe@domain.com",
“first_name”:“John”,
“last_name”:“Doe”
}
getting the following error:
{“code”:1010,“message”:“User not found on this account: …”}
also tried with an existing account (with matching email), still getting the same error. do we need create the registrant/user before calling this API end point?
is there another way to launch a meeting, which requires registration, directly without user manual registration?
btw, the webinar registrant api works perfectly fine (/v2/webinars/{webinarId}/registrants).