User
The User API retrieves detailed information about a specific user using their unique ID. This API is useful for accessing user profiles and settings.
The ID of the user to retrieve the details.
The user’s unique identifier
The user’s external ID, usually a unique identifier from the calling system
The user’s title.
The user’s first name
The user’s middle name
The user’s last name
The user’s username (used during sign-in)
The unique identifier of the organization the user belongs to
The Id of the user’s company (set only if the user belongs to a company)
The user Id of the user’s manager (set only if the user belongs to a manager)
Indicates whether the user account has been disabled
The user’s e-mail address
The user’s phone number
The user’s secondary phone number
First line of the user’s address
Second line of the user’s address
The user’s city
The user’s state
The user’s country
The user’s zip/postal code
URL to the user’s profile image
The User’s timezone
The user’s secondary e-mail address
{
"success": true,
"message": "Record retrieved successfully.",
"data": {
"Id": 57383,
"ExternalId": "C9876ZFGEFER9876",
"Title": "mr",
"FirstName": "John",
"MiddleName": "tanss",
"LastName": "Smith",
"UserName": "john.smith",
"OrganizationId": 4873,
"CompanyId": 23456,
"ManagerId": 987623,
"Disabled": false,
"Email": "joe.smith@test.com",
"Phone": 9876543212,
"Phone2": 9282726526,
"Address1": "home123 ,Newyork",
"Address2": "home 234. newyork",
"City": "newyork",
"State": "manhattan",
"Country": "newyork",
"Zip": null,
"ProfileImageUrl": null,
"TimeZoneId": "Central Standard Time",
"SecondaryEmail": "joe2.smith@test.com",
"Roles": [
0,
2
],
"ManagedOrganizations": []
}
}