取得所有提交
在 Microsoft 硬體 API 中使用此方法,以擷取產品所有提交的資料。
必要條件
如果您尚未這麼做,請先完成 Microsoft 硬體 API 的所有 必要條件 ,再嘗試使用這些方法。
要求
這個方法的語法如下。 請參閱下列各小節了解標頭和要求主體的使用範例和描述。
方法 | 要求 URI |
---|---|
GET | https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/{productID}/submissions |
要求標頭
標頭 | 類型 | 描述 |
---|---|---|
授權 | 字串 | 必要。 Microsoft Entra持有人< 權杖形式的識別碼存取權杖 > 。 |
accept | 字串 | 選擇性。 指定內容類型。 允許的值為 「application/json」 |
要求參數
請勿提供這個方法的要求參數。
要求本文
不提供此方法的要求主體。
要求範例
下列範例示範如何擷取產品所有提交的相關資訊。
GET https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions HTTP/1.1
Authorization: Bearer <your access token>
回應
下列範例示範成功要求所有產品提交所傳回的 JSON 回應本文。 為了簡潔起見,此範例只會顯示要求傳回的前兩個提交資料。 如需回應主體中各個值的詳細資訊,請參閱下列各節。
{
"value": [
{
"id": 1152921504621442000,
"productId": 13635057453741328,
"links": [
{
"href": "https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions/1152921504621441944",
"rel": "self",
"method": "GET"
},
{
"href": "https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions/1152921504621441944",
"rel": "update_submission",
"method": "PATCH"
}
],
"isExtensionInf": true,
"isUniversal": true,
"isDeclarativeInf": true,
"name": "HARRY-Duatest2",
"type": "derived"
},
{
"id": 1152921504621442000,
"productId": 13635057453741328,
"workflowStatus": {
"currentStep": "finalizeIngestion",
"state": "completed",
"messages": []
},
"links": [
{
"href": "https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions/1152921504621441946",
"rel": "self",
"method": "GET"
},
{
"href": "https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions/1152921504621441946",
"rel": "update_submission",
"method": "PATCH"
}
],
"isExtensionInf": true,
"isUniversal": true,
"isDeclarativeInf": true,
"name": "updated-1",
"type": "derived"
},
{
"id": 1152921504621442000,
"productId": 13635057453741328,
"workflowStatus": {
"currentStep": "finalizeIngestion",
"state": "completed",
"messages": []
},
"links": [
{
"href": "https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions/1152921504621441930",
"rel": "self",
"method": "GET"
},
{
"href": "https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions/1152921504621441930",
"rel": "update_submission",
"method": "PATCH"
}
],
"isExtensionInf": true,
"isUniversal": true,
"isDeclarativeInf": true,
"name": "HARRY-Duatest2",
"type": "initial"
}
],
"links": [
{
"href": "https://manage.devcenter.microsoft.com/v2.0/my/hardware/products/13635057453741329/submissions",
"rel": "self",
"method": "GET"
}
]
}
回應本文
值 | 類型 | 描述 |
---|---|---|
value | array | 物件的陣列,其中包含每個產品提交的相關資訊。 如需每個物件中資料的詳細資訊,請參閱 提交資源。 |
連結 | array | 物件的陣列,其中包含包含實體的相關實用連結。 如需詳細資訊,請參閱連結化物件 |
錯誤碼
如需詳細資訊,請參閱 錯誤碼。