POST https://zoom.us/oauth/token?grant_type=account_credentials&account_id=[account_id]
Use the Navigate to the Auth tab and under Remember, you can always use the [collection variables] feature and syntax within Qodex or directly paste those values in the respective form fields if you do not wish to edit/use the global variables feature. 🚨 There are no refresh tokens for Server-to-Server OAuth app type. To get a new access token, your app should call the Alternatively, you can clear the Auth tab fields, and use the If you go this route, make sure to re-check the Once you're done, send the POST request to The successful response will be the access token, which is a Bearer token type that expires in an hour, with the scopes that you chose in your app settings screen:Get Access Token
account_id
you got from you S2S OAuth app credentials (or the Get a user
API endpoint request in the folder) for the account_id
value under the Params
tab.Basic Auth
fill in the following account credentials from your Server-to-Server OAuth app:
/oauth/token
endpoint again with the account_credentials
grant.Headers
tab per our Zoom documentation.Headers
key-value field boxes and Base64-encode your Client_ID:Client_Secret
(with the colon between the two and no spaces) before pasting in the Authorization
value field.https://zoom.us/oauth/token
(already pre-populated in this request for you).{
“Access_token“: String,
“Token_type”: “bearer”,
“Expire_in”: long,
“scope” : [String]
}
Developer Documentation:
Body
PARAM
Key | Datatype | Required | Description |
grant_type
|
string | ||
account_id
|
string |
HEADERS
Key | Datatype | Required | Description |
Authorization
|
string | The string Basic with your Client ID and Client Secret separated with colon (:), Base64-encoded. |
RESPONSES
status
ENDPOINTS