Who can use this feature?
👤 Organizations Owners, Admins, and custom roles with the "Create Access Tokens" feature.
🚩 Available on the Essential, Classroom Pro, and Enterprise Plans.
Overview
The ArborXR Public API V2 provides access to your organization’s data via a RESTful interface.
The root of v2 of the API is located at https://api.xrdm.app/api/v2
. From the documentation page, you can download the OpenAPI spec documentation as JSON or YAML, for use with your API development client of choice.
Generate an Access Token
Navigate to organization Settings, select Access Token, then click Create Access Token.
Enter a title then click Create.
💡If you see two token scopes, MDM API and Insights API, select MDM API.
Copy the token value before closing.
Authentication
Once you’ve generated an access token, you can use that token to make HTTP requests to the API, by adding it as a bearer token to your request’s Authorization
header. You should also be sure to include the Accept
and specify that you expect a JSON response.
Authorization: Bearer <access_token>
Accept: application/json