GET api/User/{id}
Get User by matching the provided id
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
user_data_dc| Name | Description | Type | Additional information | 
|---|---|---|---|
| UserId | integer | None. | |
| ittfid | integer | None. | |
| UserName | string | None. | |
| DisplayName | string | None. | |
| Nationality | string | None. | |
| Registration_date | date | None. | |
| address1 | string | None. | |
| address2 | string | None. | |
| address3 | string | None. | |
| city | string | None. | |
| Residing_country_code | string | None. | |
| Postcode | string | None. | |
| photo | string | None. | |
| placeofbirth | string | None. | |
| MFAEnabled | boolean | None. | |
| ADEnabled | boolean | None. | |
| Default_Language_Code | string | None. | |
| password_expiry_date | date | None. | |
| UserTypeId | integer | None. | |
| status | string | None. | |
| IsActive | boolean | None. | |
| Deleted | integer | None. | |
| AppAccess_Admin | boolean | None. | |
| AppAccess_OES | boolean | None. | |
| IsLocalAccount | boolean | None. | |
| AD_ID | string | None. | |
| UserGroupId | integer | None. | |
| IsMaster | boolean | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "UserId": 1,
  "ittfid": 1,
  "UserName": "sample string 1",
  "DisplayName": "sample string 2",
  "Nationality": "sample string 3",
  "Registration_date": "2025-10-31T07:04:13.3523298+00:00",
  "address1": "sample string 4",
  "address2": "sample string 5",
  "address3": "sample string 6",
  "city": "sample string 7",
  "Residing_country_code": "sample string 8",
  "Postcode": "sample string 9",
  "photo": "sample string 10",
  "placeofbirth": "sample string 11",
  "MFAEnabled": true,
  "ADEnabled": true,
  "Default_Language_Code": "sample string 13",
  "password_expiry_date": "2025-10-31T07:04:13.3523298+00:00",
  "UserTypeId": 1,
  "status": "sample string 14",
  "IsActive": true,
  "Deleted": 1,
  "AppAccess_Admin": true,
  "AppAccess_OES": true,
  "IsLocalAccount": true,
  "AD_ID": "sample string 16",
  "UserGroupId": 1,
  "IsMaster": true
}
        application/xml, text/xml
            Sample:
<user_data_dc xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplicationITTF1.Controllers"> <ADEnabled>true</ADEnabled> <AD_ID>sample string 16</AD_ID> <AppAccess_Admin>true</AppAccess_Admin> <AppAccess_OES>true</AppAccess_OES> <Default_Language_Code>sample string 13</Default_Language_Code> <Deleted>1</Deleted> <DisplayName>sample string 2</DisplayName> <IsActive>true</IsActive> <IsLocalAccount>true</IsLocalAccount> <IsMaster>true</IsMaster> <MFAEnabled>true</MFAEnabled> <Nationality>sample string 3</Nationality> <Postcode>sample string 9</Postcode> <Registration_date>2025-10-31T07:04:13.3523298+00:00</Registration_date> <Residing_country_code>sample string 8</Residing_country_code> <UserGroupId>1</UserGroupId> <UserId>1</UserId> <UserName>sample string 1</UserName> <UserTypeId>1</UserTypeId> <address1>sample string 4</address1> <address2>sample string 5</address2> <address3>sample string 6</address3> <city>sample string 7</city> <ittfid>1</ittfid> <password_expiry_date>2025-10-31T07:04:13.3523298+00:00</password_expiry_date> <photo>sample string 10</photo> <placeofbirth>sample string 11</placeofbirth> <status>sample string 14</status> </user_data_dc>