Look up a user by their unique ID. This is the standard way to grab basic info for any community member. Use this when you have a UserID from another data source and need to show their name or profile picture quickly.
Authorization
Bearer YOUR_TOKEN
UserID
LogView
ProfileLastModifiedAfter
ProfileLastModifiedBefore
Authorization: Bearer YOUR_TOKEN
https://your-site.com/api/users/1311/details
{ "IsError": false, "ResponseMessage": "", "ResponseData": { "AvatarImageURL": "https://your-site.com/Assets/Uploaded-Photos/376/f9c8486c-f3f3-41f9-9f46-044093247dc9.jpg", "AvatarPath": "5e957294-635a-444d-9b07-0185d53ebc6c.jpg", "Bio": "
I'm excited to be able to help people achieve their potential in life, both at work and outside of the office.
", "BlogID": 0, "DOB": "1982-04-24T00:00:00", "DateFormat": "M/d/yyyy", "DateJoined": "2026-07-03T19:54:58.27", "DateJoinedString": "7/3/2017", "DateLastVisited": "2026-03-12T06:55:43.257", "DateLastVisitedString": "3/12/2025", "ProfileLastModified": "2026-03-10T18:45:22.123Z", "DefaultCulture": "en-US", "Email": "noreply@your-site.com", "EmailRecieve": 0, "SpaceDigestOption": 0, "FacebookURL": "https://facebook.com/axerosolutions/", "FavoriteBooks": "Creativity Inc., The Men Who Stare at Goats, How to Fail at Almost Everything and Still Win Big, Never Split the Difference, Who the Hell Wants to Work for You?", "FavoriteCuisines": "Japanese, Chinese, Thai, Hamburgers, French Fries, Ice Cream, Lollipops, Hershey bars, Cheese.", "FavoriteMusic": "Air, Led Zeppelin, Miles Davis, The Doors, Nine Inch Nails, techno. ", "FavoriteTVShows": "Dexter, Breaking Bad, X-Files, The Office.", "FaxNumber": "444-333-5441", "FirstName": "Alexis", "Gender": 3, "GoogleIM": "alexisgoogle", "CompanyName": "Axero Solutions", "ICQIM": "Axero Solutions", "IP": "122.160.157.8", "Interests": "Human Resources, helping people, business, employee engagement, intranet software.", "InvitationID": 0, "IsActivated": true, "IsAnonymous": false, "IsUserLocked": false, "IsBanned": false, "IsConfirmed": false, "IsContactInfoVisible": true, "IsFeatured": true, "IsIsolated": false, "IsProfileCompleted": true, "IsOptInPromotionalEmails": false, "IsPasswordEncrypted": true, "IsProfilePublic": true, "LastName": "Fox", "LinkedinURL": "https://linkedin.com/company/axero-solutions-llc", "Location": "San Diego, California United States", "MediaServerID": 62, "MediaServerRootURL": "https://your-site.com/Assets/Uploaded-Photos", "MembershipStatus": 0, "MetaDescription": "{{USER_NAME}} is on {{COMMUNITY_NAME}}. Join {{COMMUNITY_NAME}} to connect with {{USER_NAME}}", "MetaKeywords": "admin, ", "MetaTitle": "{{USER_NAME}} | {{COMMUNITY_NAME}}", "MiddleName": "Remmington", "NumBlogPosts": 0, "NumPosts": 41, "Occupation": "CEO", "PMNotification": true, "PhoneNumber": "+16197771858", "Points": 80207, "ProfileImageURL": "https://your-site.com/Assets/Uploaded-Photos/376/81085e30-ef6c-4928-a014-53fe56bc48a2.jpg", "ProfilePhoto": "profile-default.jpg", "ProfileURL": "https://your-site.com/people/admin", "OnlineChatStatus": 1, "RankID": 5, "RankImage": "rank-guru.gif", "RankImageURL": "https://your-site.com/Assets/Uploaded-Photos/rank-guru.gif", "RankName": "Expert", "RoleID": 0, "Salutation": "607", "ShowEmail": true, "Signature": "", "SkypeIM": "alexisskype", "TimeFormat": "h:mm tt", "TimeZoneID": "India Standard Time", "TimeZoneText": "(UTC+05:30) India Standard Time", "TwitterURL": "https://x.com/AxeroSolutions", "UserID": 376, "UserInfoDisplayName": "Alexis Fox", "UserName": "admin", "HasJoinedViaThirdPartyLogin": false, "IsWindowsADUser": false, "ChatStatusCssClass": "status-offline", "ChatStatusText": "Offline", "LastChatActivityDate": "2026-03-13T07:20:20.75", "UserPresenceStatus": 3, "SimpleFields": { "9": { "FieldUseID": 9, "ContentTypeID": 15, "DataIDs": [ 4034 ], "RenderedValue": "noreply@your-site.com", "RenderedValues": [ "noreply@your-site.com" ], "FieldValue2": "", "FieldValues2": [], "OptionResourceKeys": [], "ChildFields": {}, "Indexed": false, "IsPreference": false, "SystemName": "SystemEmail", "FieldType": 1, "FieldSubType": 2, "Visibility": 0, "TenantID": 0 }, "63": { "FieldUseID": 63, "ContentTypeID": 15, "DataIDs": [ 4035 ], "RenderedValue": "Alexis", "RenderedValues": [ "Alexis" ], "FieldUTCDates": [], "LookupValues": [], "FieldValues": [ "Alexis" ], "FieldValue2": "", "FieldValues2": [], "OptionResourceKeys": [], "ChildFields": {}, "Indexed": true, "IsPreference": false, "SystemName": "FirstName", "FieldType": 1, "FieldSubType": 1, "Visibility": 0, "TenantID": 0 }, "InOrgChart": true, "Industry": "1227", "ConnectionStatus": 0, "CanChat": false, "SpaceIDs": [ 252, 255 ], "RoleIDsTLC": [ 1, 2, 3 ], "ContentMemberships": [ 1781 ], "CanBeConnectedInMSTeams": false, "DirectReports": [ 518, 519 ], "ChatWith": 1 } } }
{ "IsError": true, "ResponseMessage": "Required parameter is missing or invalid.", "ResponseData": null }
The ProfileLastModified field is a UTC timestamp included in the response body. It represents the most recent update to any tracked profile field for that user.
ProfileLastModified
Use the optional query parameters ProfileLastModifiedAfter and ProfileLastModifiedBefore to filter results to users modified within a specific time range. Both parameters accept dates in ISO 8601 format using UTC.
Examples:
?ProfileLastModifiedAfter=2025-03-15T14:30:00Z
?ProfileLastModifiedBefore=2025-04-01T00:00:00Z
?ProfileLastModifiedAfter=2025-03-01T00:00:00Z&ProfileLastModifiedBefore=2025-04-01T00:00:00Z
The profile fields that trigger an update to the ProfileLastModified timestamp are controlled by a system property:
ProfileLastModifiedTrackedFieldIds
While Axero does not enforce hard rate limits by default, we recommend the following best practices to ensure optimal performance:
Axero may implement temporary rate restrictions if excessive API usage affects overall site performance. For high-volume integrations, contact Axero to discuss your requirements.
is requesting access to a wiki that you have locked: https://my.axerosolutions.com/spaces/5/axero-documentation/wiki/view/404/rest-api-get-user
Your session has expired. You are being logged out.