It | | For asynchronous requests it will contain a request ID. This may be used with
tsNet's tsNetGetStatus function. If the request is synchronous and successful the it
variable will be a UTF-8 encoded JSON string in the form:
{
"account_id": string,
"name": {
"given_name": string,
"surname": string,
"familiar_name": string,
"display_name": string,
"abbreviated_name": string
},
"email": string,
"email_verified": boolean,
"disabled": boolean,
"is_teammate": boolean,
"profile_photo_url": string
}
If an error occurred the JSON string will be in the following form:
{
"error_summary": string,
"error": {
".tag": string
}
}
|