Skip to content

EmbeddedZoomCredentials

JWT and ZAK credentials for joining an embedded Zoom meeting

Fields

jwt · String! · required · Meeting SDK JWT for authenticating with the Zoom Web SDK. Valid for the Zoom Meeting SDK signature parameter.
zak · String · Fresh, short-lived (~2 hours) ZAK for starting/joining as host (role 1). Null for participants (role 0). Fetch fresh per call; do not cache.

Used By

Definition

"""
JWT and ZAK credentials for joining an embedded Zoom meeting
"""
type EmbeddedZoomCredentials {
"""
Meeting SDK JWT for authenticating with the Zoom Web SDK. Valid for the Zoom Meeting SDK signature parameter.
"""
jwt: String!
"""
Fresh, short-lived (~2 hours) ZAK for starting/joining as host (role 1). Null for participants (role 0). Fetch fresh per call; do not cache.
"""
zak: String
}