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>616b61e2-5f30-4b2f-b7eb-3caabaa66811</ClassId> <InstitutionId>27d55c5f-3e49-4c04-ac05-f31abae82550</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>b05c6925-90c0-4505-9c0e-367e2910ef07</UserId> <UserRole>sample string 7</UserRole> <UserRoleId>a52ad58f-06dd-47d0-99c1-b0db264ccda2</UserRoleId> </UserBaseResponse>
application/json, text/json
Sample:
{
"Message": "sample string 1",
"UserId": "b05c6925-90c0-4505-9c0e-367e2910ef07",
"InstitutionId": "27d55c5f-3e49-4c04-ac05-f31abae82550",
"ClassId": "616b61e2-5f30-4b2f-b7eb-3caabaa66811",
"InstitutionName": "sample string 3",
"InstitutionNumber": "sample string 4",
"TypeId": "sample string 5",
"TypeName": "sample string 6",
"UserRole": "sample string 7",
"UserRoleId": "a52ad58f-06dd-47d0-99c1-b0db264ccda2",
"Level": "sample string 8",
"PhysicalMunicipalityName": "sample string 9",
"PhysicalMunicipalityNumber": "sample string 10",
"AdministrativeMunicipalityName": "sample string 11",
"AdministrativeMunicipalityNumber": "sample string 12"
}