取得客戶的原則清單
適用于:合作夥伴中心
本文說明如何擷取指定客戶的設定原則集合。
必要條件
認證,如合作夥伴中心驗證所述。 此案例支援使用獨立應用程式和 App+使用者認證進行驗證。
客戶識別碼 (
customer-tenant-id
)。 如果您不知道客戶的識別碼,您可以在 合作夥伴中心查閱。 從合作夥伴中心首頁選取 [ 客戶 ] 工作區。 從 [ 客戶] 清單中選取客戶,然後選取 [ 帳戶]。 在客戶的 [帳戶] 頁面上,在 [ 客戶帳戶詳細資料] 區段中尋找 Microsoft 識別碼。 Microsoft 識別碼與客戶識別碼 ()customer-tenant-id
相同。
C#
若要取得客戶所有原則的清單:
使用客戶識別碼呼叫 IAggregatePartner.Customers.ById 方法,以擷取指定客戶的作業介面。
擷取 ConfigurationPolicies 屬性,以取得設定原則集合作業的介面。
IAggregatePartner partnerOperations;
string selectedCustomerId;
var configPolicies = partnerOperations.Customers.ById(selectedCustomerId).ConfigurationPolicies.Get();
如需範例,請參閱下列內容:
- 範例: 主控台測試應用程式
- 專案: 合作夥伴中心 SDK 範例
- 類別: GetAllConfigurationPolicies.cs
REST 要求
要求的語法
方法 | 要求 URI |
---|---|
GET | {baseURL}/v1/customers/{customer-id}/policies HTTP/1.1 |
URI 參數
建立要求時,請使用下列路徑參數:
名稱 | 類型 | 必要 | 描述 |
---|---|---|---|
customer-id | string | Yes | 用來識別客戶的 GUID 格式字串。 |
要求標頭
如需詳細資訊,請參閱合作夥伴中心 REST 標頭。
要求本文
無
要求範例
GET https://api.partnercenter.microsoft.com/v1/customers/47021739-3426-40bf-9601-61b4b6d7c793/policies HTTP/1.1
Authorization: Bearer <token>
Accept: application/json
MS-RequestId: e88d014d-ab70-41de-90a0-f7fd1797267d
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
Content-Length:0
X-Locale: en-US
Host: api.partnercenter.microsoft.com
REST 回應
如果成功,回應本文會包含 ConfigurationPolicy 資源的集合。
回應成功和錯誤碼
每個回應都隨附 HTTP 狀態碼,會指出成功與否以及其他的偵錯資訊。 請使用網路追蹤工具來讀取此錯誤碼、錯誤類型和其他參數。 如需完整清單,請參閱 合作夥伴中心 REST 錯誤碼。
回應範例
HTTP/1.1 200 OK
Content-Length: 1221
Content-Type: application/json; charset=utf-8
MS-CorrelationId: bbbb1111-cc22-3333-44dd-555555eeeeee
MS-RequestId: 6eb7383d-eeb5-44d7-8570-e0ed12c0547a
MS-CV: YrLe3w6BbUSMt1fi.0
MS-ServerId: 030020344
Date: Tue, 25 Jul 2017 18:07:49 GMT
{
"totalCount": 3,
"items": [{
"id": "8c7d25aa-2dbb-409c-a1f0-f55bd9108fa9",
"name": "Windows 10 Enterprise E3",
"category": "o_o_b_e",
"description": "P462017 description",
"devicesAssigned": 0,
"policySettings": ["oobe_user_not_local_admin", "skip_express_settings"],
"createdDate": "2017-04-27T11:30:34.1944704-07:00",
"lastModifiedDate": "2017-04-27T11:30:34.1944704-07:00",
"attributes": {
"objectType": "ConfigurationPolicy"
}
}, {
"id": "56edf752-ee77-4fd8-b7f5-df1f74a3a9ac",
"name": "Test policy",
"category": "o_o_b_e",
"description": "Test policy creation from API 1",
"devicesAssigned": 0,
"policySettings": ["skip_express_settings"],
"createdDate": "2017-07-25T11:03:03.8457088-07:00",
"lastModifiedDate": "2017-07-25T11:04:00.8150016-07:00",
"attributes": {
"objectType": "ConfigurationPolicy"
}
}, {
"id": "a96b5fd9-0f3a-419a-b55c-a8aecd6b1f00",
"name": "Windows 10 Enterprise E5",
"category": "o_o_b_e",
"description": "test policy creation from API",
"devicesAssigned": 0,
"policySettings": ["oobe_user_not_local_admin", "skip_express_settings"],
"createdDate": "2017-07-25T11:07:36.1501184-07:00",
"lastModifiedDate": "2017-07-25T11:07:36.1501184-07:00",
"attributes": {
"objectType": "ConfigurationPolicy"
}
}
],
"attributes": {
"objectType": "Collection"
}
}