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>14309f29-d440-4dfa-923e-495206ff7d99</ClassId> <InstitutionId>1273078b-5fea-4069-9974-a23b23f1d497</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>0a41e5a5-6a16-4238-bd42-fb92ce507658</UserId> <UserRole>sample string 7</UserRole> <UserRoleId>f66087ee-f18f-4880-8645-d3b87cfa0224</UserRoleId> </UserBaseResponse>
application/json, text/json
Sample:
{
"Message": "sample string 1",
"UserId": "0a41e5a5-6a16-4238-bd42-fb92ce507658",
"InstitutionId": "1273078b-5fea-4069-9974-a23b23f1d497",
"ClassId": "14309f29-d440-4dfa-923e-495206ff7d99",
"InstitutionName": "sample string 3",
"InstitutionNumber": "sample string 4",
"TypeId": "sample string 5",
"TypeName": "sample string 6",
"UserRole": "sample string 7",
"UserRoleId": "f66087ee-f18f-4880-8645-d3b87cfa0224",
"Level": "sample string 8",
"PhysicalMunicipalityName": "sample string 9",
"PhysicalMunicipalityNumber": "sample string 10",
"AdministrativeMunicipalityName": "sample string 11",
"AdministrativeMunicipalityNumber": "sample string 12"
}