Get started

Last updated May 20th, 2026

This guide provides step-by-step instructions to integrate Knox Configure capabilities into your web services.

Before you begin

Before you start the integration process, ensure you have the following:

  • A valid Samsung Knox account with Knox Configure enabled
  • Familiarity with REST APIs and authentication mechanisms
  • A development environment capable of making HTTP requests
  • Devices that support Knox Configure (Samsung devices with Knox support)

Step 1: Sign up for Knox Configure

  1. Register for a Samsung Knox account.
  2. Log in to your account and apply for the Knox Configure service from the overview page. For additional information, see the Knox Configure Admin Guide.

Step 2: Request API access

Step 3: Generate access token

Step 4: Test your access token

Step 5: Verify your integration

Make a test call to any endpoint in the Knox Configure API to ensure your integration was successful. For example, try retrieving information about devices using the v2 Get devices endpoint. A successful response will look like this:

{
  "code": "2000000",
  "message": "SUCCESS",
  "pageNum": 0,
  "pageSize": 1,
  "totalCount": 1,
  "totalPages": 1,
  "size": 1,
  "devices": [
    {
      "id": "device123",
      "imei": "123456789012345",
      "model": "SM-G991U",
      "profileId": "profile456",
      "status": "CONFIGURED",
      "lastUpdated": "2023-01-15T10:30:00Z"
    }
  ]
}

Is this page helpful?