Dear Sirs,
In the following documentation page, the description of the successful response is not correct.
https://marketplace.zoom.us/docs/guides/build/server-to-server-oauth-app/#successful-response
The property names must be written all lower case, and the token duration property is expires_in. Summarizing, the correct would be:
{
“access_token“: String,
“token_type”: “bearer”,
“expires_in”: long, // duration in seconds
“scope” : String // multiple scopes separated by spaces
}