Get a product

Use this method in the Microsoft Hardware API to retrieve data for a specific product registered to your Windows Dev Center account.

Prerequisites

If you have not done so already, complete all the prerequisites for the Microsoft Hardware APIs before trying to use any of these methods.

Request

This method has the following syntax. See the following sections for usage examples and descriptions of the header and request body.

Method Request URI
GET https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/{productID}

Request header

Header Type Description
authorization string Required. The Microsoft Entra ID access token in the form Bearer <token>.
accept string Optional. Specifies the type of content. Allowed value is “application/json”

Request parameters

Do not provide request parameters for this method

Request body

Do not provide a request body for this method.

Request examples

The following example demonstrates how to retrieve information about a specific product registered to your account.

GET https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/14039471039847257 HTTP/1.1
Authorization: Bearer <your access token>

Response

The following example demonstrates the JSON response body returned by a successful request for a specific product registered to a developer account. For more details about the values in the response body, see the following section.

{
    "id": 9007199267351834,
    "sharedProductId": 1152921504606971255,
    "links": [
        {
            "href": "https://hardwareapi.microsoft.com/api/v1/hardware/products/9007199267351834",
            "rel": "self",
            "method": "GET"
        },
        {
            "href": "https://hardwareapi.microsoft.com/api/v1/hardware/products/9007199267351834/submissions",
            "rel": "get_submissions",
            "method": "GET"
        }
    ],
    "isCommitted": true,
    "isExtensionInf": false,
    "originType": "author",
    "sourceProductId": 0,
    "sourcePublisherId": 0,
    "isRetpolineCompiled": false,
    "message": "",
    "deviceMetadataIds": [],
    "deviceType": "notSet",
    "isTestSign": false,
    "isFlightSign": false,
    "marketingNames": [],
    "productName": "NewDriverHacked",
    "selectedProductTypes": {},
    "requestedSignatures": [
        "WINDOWS_v100_X64_TH1_FULL",
        "WINDOWS_v63_X64"
    ],
    "additionalAttributes": {},
    "testHarness": "hlk"
}

Error codes

For more info, see Error codes.

See also