Authorize and send form

Can I authorize and send form data in one post request?

Hey @artyut,

With a Zoom JWT Token, yes.

Thanks,
Tommy

Can I log in to the part using JWT, and in the form send a POST request of the form https://api.zoom.us/v2/webinars/xxx/registrants?first_name={username}&phone={phone}&email={email}?

Hey @artyut,

Yes. Just add the JWT Token as the Authorization bearer header.

"Authorization": "Bearer JWT_TOKEN"

Thanks,
Tommy

Yes, but i send

https://api.zoom.us/v2/webinars/XXX/registrants?authorization=Bearer%20XXX&first_name={username}&last_name={username}&phone={phone}&email={email} and result is bad

Hey @artyut,

Please try:

https://api.zoom.us/v2/webinars/XXX/registrants?access_token={JWT_TOKEN}&first_name={username}&last_name={username}&phone={phone}&email={email}

Thanks,
Tommy

Dont works and with «access_token», and with «authorization»

Hey @artyut,

Please provide the response body / error so we can debug.

Thanks,
Tommy

error 124 «Invalid access token»

Hey @artyut,

Please try setting the authorization in the request header.

Thanks,
Tommy