Product - Get
按 ID 获取产品。
GET https://prod.core.sphere.azure.net/v2/tenants/{tenantId}/products/{productId}
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
product
|
path | True |
string uuid |
要检索的产品的 ID。 |
tenant
|
path | True |
string uuid |
Azure Sphere 租户 ID。 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
成功。 |
示例
Get product details
Sample Request
GET https://prod.core.sphere.azure.net/v2/tenants/768c2cd6-1bf0-4521-9f53-084a331d81cb/products/258e9e1d-a16d-4459-be5d-38420a8c43ad
Sample Response
{
"Id": "258e9e1d-a16d-4459-be5d-38420a8c43ad",
"TenantId": "768c2cd6-1bf0-4521-9f53-084a331d81cb",
"Name": "Refrigerator",
"Description": "Contoso refrigerators"
}
定义
Product
名称 | 类型 | 说明 |
---|---|---|
Description |
string |
产品的说明。 |
Id |
string |
产品的唯一 ID。 |
Name |
string |
产品的名称。 |
TenantId |
string |
拥有产品的租户的唯一 ID。 |