LogMeIn Central Developer Center User Guide

GET a List of Users

List the Users in your LogMeIn Central account.

GET https://secure.logmein.com/public-api/v2/users

Headers

Type Description Required Notes
Authorization Contains your authorization information to allow authentication to a LogMeIn account. Required You must authenticate each API action you call with your CompanyID + PSK pair. See Authentication

Results

Response Body
Element Description Type
mahData Details for the Master Account Holder of the LogMeIn Central account. array
usersData List for the users in your LogMeIn Central Account.
isPending Indicates whether the invitations sent to the user is waiting for a reply. boolean
id A unique id number for the user. interger
email The email address of the user. string
firstName The first name set by the user. string
lastName The last name set by the user. string
isEnabled Indicates whether the user has accepted the user invitation. boolean
lastLoginDate The last time the user logged into their LogMeIn Central account. date

Example

200-Success
{
    "mahData": {
        "id": 1701441668,
        "email": "example@company.com",
        "firstName": "James T.",
        "lastName": "Boss",
        "isEnabled": true,
        "lastLoginDate": "10/19/2018 1:15:56 PM"
    },
    "usersData": [
        {
            "isPending": false,
            "id": 1701472698,
            "email": "john.doe@gmail.com",
            "firstName": "John",
            "lastName": "Doe",
            "isEnabled": true,
            "lastLoginDate": "7/24/2018 1:58:36 PM"
        }
    ]
}

HTTP Responses

Code Description Notes
200 OK Successful call made.
400 Bad Request A required parameter may be missing.
409 Unauthorized The Authorization header may be missing or invalid.
415 Unsupported Media Type A request may have been made for any format other than JSON.
429 Too Many Requests The request may have been made for the action too many times.
500 Internal Server Error May return the following message: An error occurred. If this problem happens again, please contact customer support at https://logmein.com/support and quote the error code.