hardware dashboard API

Use the Microsoft Hardware APIs to programmatically query and create submissions for hardware products within your organization's Partner Center account. These APIs are useful if your account manages many products, and you want to automate and optimize the submission process for these assets. These APIs use Microsoft Entra ID (Microsoft Entra ID) to authenticate the calls from your app or service. The following steps describe the end-to-end process of using the Microsoft Hardware API:

  1. These APIs can only be used by accounts that belong to the Hardware Partner Center program.

  2. Make sure that you have completed the prerequisites below.

  3. Before you call a method in the Microsoft Hardware API, obtain an Microsoft Entra ID access token, as illustrated below. After you obtain a token, you have 60 minutes to use this token in calls to the Microsoft Store submission API before the token expires. After the token expires, you can generate a new token.

  4. Call the Microsoft Hardware API.

Complete the prerequisites for using the Microsoft Hardware API

Before you start writing code to call the Microsoft Hardware API, make sure that you have completed the following required prerequisites.

Assigning the appropriate Hardware roles to your Microsoft Entra ID application

After you have completed the above prerequisites we must now assign the appropriate roles so that the Microsoft Entra ID application can create and manage submissions and shipping labels.

  1. From Partner Center, select the gear icon (near the upper right corner of the dashboard) and then select Developer settings. In the Settings menu, select Users.

  2. On the Users page, select Microsoft Entra ID applications and the Microsoft Entra ID application that represents the app or service that you will use to access submissions for your Partner Center account.

  3. On this page, under Roles, select Hardware.

    an image showing the Hardware tab in the Roles section.

    Select Driver Submitter, Shipping Label owner, and if available, Shipping Label promoter. Learn more about these roles

Obtain a Microsoft Entra ID access token

Before you call any of the methods in the Microsoft Hardware API, you must first obtain an Microsoft Entra ID access token that you pass to the Authorization header of each method in the API. After you obtain an access token, you have 60 minutes to use it before it expires. After the token expires, you can refresh the token, so you can continue to use it in further calls to the API. To obtain the access token, follow the instructions in Service to Service Calls Using Client Credentials to send an HTTP POST to the https://login.microsoftonline.com/<tenant_id>/oauth2/token endpoint. Here is a sample request.

POST https://login.microsoftonline.com/<tenant_id>/oauth2/token HTTP/1.1
Host: login.microsoftonline.com
Content-Type: application/x-www-form-urlencoded; charset=utf-8

grant_type=client_credentials
&client_id=<your_client_id>
&client_secret=<your_client_secret>
&resource=https://manage.devcenter.microsoft.com

For the tenant_id value in the POST URI and the client_id and client_secret parameters, specify the tenant ID, client ID and the key for your application that you retrieved from Partner Center in the previous section. For the resource parameter, you must specify https://manage.devcenter.microsoft.com.

After your access token expires, you can refresh it by following the instructions in Refreshing the access tokens.

Use the Microsoft Hardware API

After you have an Microsoft Entra ID access token, you can call methods in the Microsoft Hardware API. The API includes many methods that are grouped into scenarios. To create or update submissions, you typically call multiple methods in the Microsoft Hardware API in a specific order. For information about each scenario and the syntax of each method, see the articles in the following table.

Scenario Description
Drivers Get, create and update drivers registered to your Partner Center Account. For more information about these methods, see the following articles:

Code examples

The following sample provides detailed code that demonstrate how to use the Microsoft Hardware API along with a complete end to end prebuilt solution created by the Microsoft Surface and Devices team:

hardware dashboard API samples (GitHub)

Surface Dev Center Manager tool (GitHub)

Additional help

If you have questions about the Microsoft Store submission API or need assistance managing your submissions with this API, visit the support page and request help.

What is Microsoft Entra ID?