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>b9ca77c5-c9bb-4a9d-8e6f-40ceae3ce545</ClassId> <InstitutionId>ad9ec785-1657-4684-91de-62054b779ab2</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>ff04d59f-183b-45f3-9da5-606e1588f9e7</UserId> <UserRole>sample string 7</UserRole> <UserRoleId>45b30b83-fa1e-48d9-bb33-9cdbf80f17f7</UserRoleId> </UserBaseResponse>
application/json, text/json
Sample:
{
"Message": "sample string 1",
"UserId": "ff04d59f-183b-45f3-9da5-606e1588f9e7",
"InstitutionId": "ad9ec785-1657-4684-91de-62054b779ab2",
"ClassId": "b9ca77c5-c9bb-4a9d-8e6f-40ceae3ce545",
"InstitutionName": "sample string 3",
"InstitutionNumber": "sample string 4",
"TypeId": "sample string 5",
"TypeName": "sample string 6",
"UserRole": "sample string 7",
"UserRoleId": "45b30b83-fa1e-48d9-bb33-9cdbf80f17f7",
"Level": "sample string 8",
"PhysicalMunicipalityName": "sample string 9",
"PhysicalMunicipalityNumber": "sample string 10",
"AdministrativeMunicipalityName": "sample string 11",
"AdministrativeMunicipalityNumber": "sample string 12"
}