LogMeIn Central Developer Center User Guide

Authentication

You must authenticate each API action you call with your CompanyID + PSK pair in a header.

Important: A LogMeIn Central Account holder must obtain their PSK and CompanyID from the Configuration > API tab.

Checking your Credentials

Check if your credentials are valid by using the following command with your Company ID and PSK:

GET https://secure.logmein.com/public-api/v1/authentication

Headers

The Headers use Basic Authorization with the following format:

Authorization: Basic base64(companyId + ":" + PSK)

Results

Status Code Description Notes
200 The API call is Successful

The result of the API call will show in the body of the API call as either True or False:

{ "success": true|false }

Example

{
    "success": true
}