GET api/UserAnonymized?userId={userId}&contextIdentifier={contextIdentifier}
Gets base anonymized information about user in context of specific identifier
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| userId |
User id that is returned in loging process. |
globally unique identifier |
Required |
| contextIdentifier |
Institution or Organization context |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns user details in context of account and identifier
UserBaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| UserId | globally unique identifier |
None. |
|
| InstitutionId | globally unique identifier |
None. |
|
| ClassId | globally unique identifier |
None. |
|
| InstitutionName | string |
None. |
|
| InstitutionNumber | string |
None. |
|
| TypeId | string |
None. |
|
| TypeName | string |
None. |
|
| UserRole | string |
None. |
|
| UserRoleId | globally unique identifier |
None. |
|
| Level | string |
None. |
|
| PhysicalMunicipalityName | string |
None. |
|
| PhysicalMunicipalityNumber | string |
None. |
|
| AdministrativeMunicipalityName | string |
None. |
|
| AdministrativeMunicipalityNumber | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<UserBaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Responses"> <AdministrativeMunicipalityName>sample string 11</AdministrativeMunicipalityName> <AdministrativeMunicipalityNumber>sample string 12</AdministrativeMunicipalityNumber> <ClassId>6cba049c-0ce4-4360-baff-ffb3bb312d72</ClassId> <InstitutionId>4a90f390-df58-4660-8e59-50dbf0775a69</InstitutionId> <InstitutionName>sample string 3</InstitutionName> <InstitutionNumber>sample string 4</InstitutionNumber> <Level>sample string 8</Level> <Message>sample string 1</Message> <PhysicalMunicipalityName>sample string 9</PhysicalMunicipalityName> <PhysicalMunicipalityNumber>sample string 10</PhysicalMunicipalityNumber> <TypeId>sample string 5</TypeId> <TypeName>sample string 6</TypeName> <UserId>90cee142-5791-4e3c-98f4-d780a7b7d01d</UserId> <UserRole>sample string 7</UserRole> <UserRoleId>658f5417-01bc-4a2b-b4f4-81c27d137d10</UserRoleId> </UserBaseResponse>
application/json, text/json
Sample:
{
"Message": "sample string 1",
"UserId": "90cee142-5791-4e3c-98f4-d780a7b7d01d",
"InstitutionId": "4a90f390-df58-4660-8e59-50dbf0775a69",
"ClassId": "6cba049c-0ce4-4360-baff-ffb3bb312d72",
"InstitutionName": "sample string 3",
"InstitutionNumber": "sample string 4",
"TypeId": "sample string 5",
"TypeName": "sample string 6",
"UserRole": "sample string 7",
"UserRoleId": "658f5417-01bc-4a2b-b4f4-81c27d137d10",
"Level": "sample string 8",
"PhysicalMunicipalityName": "sample string 9",
"PhysicalMunicipalityNumber": "sample string 10",
"AdministrativeMunicipalityName": "sample string 11",
"AdministrativeMunicipalityNumber": "sample string 12"
}