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:
{
"name": string,
"id": string,
"path_lower": string,
"path_display": string,
"sharing_info": {
"read_only": boolean,
"parent_shared_folder_id": string,
"traverse_only": boolean,
"no_access": boolean
},
"property_groups": [
{
"template_id": string,
"fields": [
{
"name": string,
"value": string
}
]
}
]
}
If an error occurred the JSON string will be in the following form:
{
"error_summary": string,
"error": {
".tag": string
}
}
|