Skip to main content

MobileGoogleAuthResponseBody

$schemauri

A URL to the JSON Schema for this object.

Example: https://example.com/schemas/MobileGoogleAuthResponseBody.json
access_tokenstringrequired

JWT access token for API access

expires_inint64required

Access token expiration time in seconds

refresh_tokenstringrequired

JWT refresh token for token renewal

token_typestringrequired

Token type (Bearer)

user objectrequired

User information

avatarstring

User avatar URL

emailstringrequired

User email

email_verifiedbooleanrequired

Email verification status

idstringrequired

User ID

namestringrequired

User full name

MobileGoogleAuthResponseBody
{
"$schema": "https://example.com/schemas/MobileGoogleAuthResponseBody.json",
"access_token": "string",
"expires_in": 0,
"refresh_token": "string",
"token_type": "string",
"user": {
"avatar": "string",
"email": "string",
"email_verified": true,
"id": "string",
"name": "string"
}
}