zoom
Installation
SKILL.md
Troubleshooting
If requests fail, run zero doctor check-connector --env-name ZOOM_TOKEN or zero doctor check-connector --url https://api.zoom.us/v2/users/me --method GET
How to Use
Base URL: https://api.zoom.us/v2
All calls use Authorization: Bearer $ZOOM_TOKEN. The token is a short-lived (1 hour) OAuth access token — vm0 refreshes it automatically; skills never need to touch refresh tokens.
The me keyword can be substituted for a user ID when the authenticated user is the target (e.g. /users/me/meetings).
Users
Get Current User
curl -s "https://api.zoom.us/v2/users/me" --header "Authorization: Bearer $ZOOM_TOKEN" | jq '{id, email, first_name, last_name, account_id, type}'