Read Logged In User
After login, the user account of the authenticated subscriber can be requested.
This is usually called when the login authentication API has been successful to return the user account.
Read App Studio Logged in User
POST
AppStudio/ReadUserAccountList
This is a POST method which passes both the API and session keys as headers, and a body. If successful, the app toolbar can be displayed.
Headers
Name
Value
Content-Type
application/json
SiteKey
API Key
DataServicesKey
Session Key
Body
Name
Type
Description
Enabled
Boolean
true
Response
{
"Success": true,
"UserAcccounts": [
{
"ContactId": 123456,
"Name": "Fred Bloggs",
"EMail": "[email protected]",
"Password": "************",
"Photo": "https://api.trisys.co.uk/FileViewer/20250716_174331_5a2f8734-78e0-4b26-bfbc-7d0c261f4dd6/dall-e.png",
"JobTitle": "Software Engineer",
"Type": "Designer",
"Enabled": true,
"CreatedDate": "2025-06-13T12:30:13",
"CustomVariables": null,
"ASPLogin": "fred.bloggs_98765abc",
"UserId": 987654
}
]
}
Last updated