POST api/UserInstitution/GetUserInstitutionByID
Get a UserInstitution's information by UserInstitutionID
Request Information
URI Parameters
None.
Body Parameters
GetUserInstitutionByIDParamsName | Description | Type | Additional information |
---|---|---|---|
UserInstitutionID |
Guid-type UserInstitutionID. |
globally unique identifier |
None. |
Request Formats
application/json, text/json
{ "UserInstitutionID": "33f77626-c9e4-49e1-99d9-87505af71939" }
application/xml, text/xml
Coming soon.
Response Information
Resource Description
UserInstitution's information
UserInstitutionInformationName | Description | Type | Additional information |
---|---|---|---|
UserID |
Guid-type ID of current Sophtron user account. |
globally unique identifier |
None. |
InstitutionID |
Guid-type ID of the Institution for the login account. |
globally unique identifier |
None. |
UserInstitutionID |
Guid-type ID of the UserInstitution. |
globally unique identifier |
None. |
UserName |
UserName of the UserInstitution(login account). |
string |
None. |
CompanyID |
CompanyID of the UserInstitution(business login account). |
string |
None. |
OwnerName |
Owner's name shown in the profile setting of the UserInstitution(login account). |
string |
None. |
Address |
Owner's address shown in the profile setting of the UserInstitution(login account). |
string |
None. |
Phone |
Owner's phone numbers shown in the profile setting of the UserInstitution(login account). Note: Phone string is a stringified array that may include multiple phone numbers, e.g. "['Primary: 425-000-1234', 'Secondary: 206-123-5678']". |
string |
None. |
Owner's email addresses shown in the profile setting of the UserInstitution(login account). Note: Email string is a stringified array that may include multiple email addresses, e.g. "['Work: xxxx@work.com', 'Home: xxxx@gmail.com']". |
string |
None. |
|
LastModified |
Last time the UserInstitution gets updated from calling either api/UserInstitution/UpdateUserInstitution or api/UserInstitutionAccount/RefreshUserInstitutionAccount. |
string |
None. |
Response Formats
application/json, text/json
{ "UserID": "45692a21-5333-4b85-9276-a3a9abf3576d", "InstitutionID": "c3bf2dbb-a0cf-46bf-b670-780ae8f4b1f1", "UserInstitutionID": "d7b7cc9a-a41a-4706-98d7-cd80904c7f86", "UserName": "sample string 4", "CompanyID": "sample string 5", "OwnerName": "sample string 6", "Address": "sample string 7", "Phone": "sample string 8", "Email": "sample string 9", "LastModified": "sample string 10" }
application/xml, text/xml
Coming soon.