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>a3e4cb01-17ab-456e-806d-373e8db970eb</ClassId> <InstitutionId>8d93cca2-9680-4008-a88c-c04dd060ffe8</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>b3fdbe5e-98ce-484a-b09f-46e2b61903d6</UserId> <UserRole>sample string 7</UserRole> <UserRoleId>60614816-9460-4345-91e4-6ebe622491ce</UserRoleId> </UserBaseResponse>
application/json, text/json
Sample:
{
"Message": "sample string 1",
"UserId": "b3fdbe5e-98ce-484a-b09f-46e2b61903d6",
"InstitutionId": "8d93cca2-9680-4008-a88c-c04dd060ffe8",
"ClassId": "a3e4cb01-17ab-456e-806d-373e8db970eb",
"InstitutionName": "sample string 3",
"InstitutionNumber": "sample string 4",
"TypeId": "sample string 5",
"TypeName": "sample string 6",
"UserRole": "sample string 7",
"UserRoleId": "60614816-9460-4345-91e4-6ebe622491ce",
"Level": "sample string 8",
"PhysicalMunicipalityName": "sample string 9",
"PhysicalMunicipalityNumber": "sample string 10",
"AdministrativeMunicipalityName": "sample string 11",
"AdministrativeMunicipalityNumber": "sample string 12"
}