Legacy API Usage
Westley Heagy avatar
Written by Westley Heagy
Updated over a week ago

The ManageXR API provides a RESTful way to access your device data.

Authorization

To access the REST API, send an HTTPS request with the header:

Authorization: Basic <encoded_credentials>

To create the <encoded_credentials>, Base64 encode the following string:

<api_key_id>:<api_key_secret>

To generate these credentials, go to the API Keys settings page.

Available endpoints

Each endpoint must be accessed using HTTPS and a valid auth header

GET /api/v1/devices

Response: JSON array of all device data

Example:

curl -D- -u API_KEY_ID:API_KEY_SECRET -X GET https://console.managexr.com/api/v1/devices

Did this answer your question?