變更客戶訂用帳戶計費週期
適用於:合作夥伴中心 |由 21Vianet 營運的合作夥伴中心 |美國政府Microsoft雲端合作夥伴中心
提示
此 API 可讓您只修改舊版訂用帳戶的計費頻率。
若要修改新商務體驗 (NCE) 訂用帳戶和舊版訂用帳戶的計費頻率,您可以使用依標識元更新訂用帳戶 - 合作夥伴應用程式開發人員 |Microsoft Learn API。
將訂單從每月更新為年度計費,或從年度更新為每月計費。
在合作夥伴中心,您可以瀏覽至客戶的訂用帳戶詳細數據頁面來執行這項作業。 完成後,您會看到一個選項,定義訂用帳戶目前的計費週期,並能夠變更並提交訂閱。
本文的範圍 不足:
- 變更試用版的計費週期
- 變更任何非年度供應專案的計費週期(每月、六年)和 Azure 訂用帳戶
- 變更非使用中訂用帳戶的計費週期
- 變更以授權為基礎的訂用帳戶Microsoft 線上服務計費週期
必要條件
認證,如合作夥伴中心驗證所述。 此案例支援使用獨立應用程式和 App+使用者認證進行驗證。
客戶識別碼 (
customer-tenant-id
)。 如果您不知道客戶的標識碼,您可以在合作夥伴中心中選取 [客戶] 工作區,然後從客戶清單中查看客戶,然後從 [帳戶]。 在客戶的 [帳戶] 頁面上,在 [客戶帳戶資訊] 區段中尋找Microsoft標識碼。 Microsoft 識別碼與客戶識別碼 (customer-tenant-id
) 相同。訂單標識碼。
C#
若要變更計費周期的頻率,請更新 Order.BillingCycle 屬性。
// IAggregatePartner partnerOperations;
// string customerId;
// string offerId;
// string orderId;
var order = new Order()
{
ReferenceCustomerId = customerId,
BillingCycle = BillingCycleType.Annual,
LineItems = new List<OrderLineItem>()
{
new OrderLineItem()
{
LineItemNumber = 0,
OfferId = offerId,
SubscriptionId = "aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e",
Quantity = 1
}
}
};
var createdOrder = partnerOperations.Customers.ById(customerId).Orders.ById(orderId).Patch(order);
REST 要求
要求語法
方法 | 要求 URI |
---|---|
PATCH | {baseURL}/v1/customers/{customer-tenant-id}/orders/{order-id} HTTP/1.1 |
URI 參數
下表列出變更訂用帳戶數量所需的查詢參數。
名稱 | 類型 | 必要 | 描述 |
---|---|---|---|
customer-tenant-id | GUID | Y | 識別客戶的 GUID 格式客戶租用戶標識碼 |
order-id | GUID | Y | 訂單標識碼 |
要求標頭
如需詳細資訊,請參閱合作夥伴中心 REST 標頭。
要求本文
下表描述要求本文中的屬性。
訂單
屬性 | 型別 | 必要 | 描述 |
---|---|---|---|
ID | 字串 | 否 | 成功建立訂單時提供的訂單標識碼 |
ReferenceCustomerId | 字串 | Y | 客戶標識碼 |
BillingCycle | 字串 | Y | 指出合作夥伴為此訂單計費的頻率。 支援的值是 BillingCycleType 中找到的成員名稱。 |
LineItems | 物件陣列 | Y | OrderLineItem 資源的數位 |
CreationDate | Datetime | 否 | 訂單建立的日期,以日期時間格式 |
屬性 | Object | 否 | 包含 “ObjectType”: “OrderLineItem” |
OrderLineItem
屬性 | 型別 | 必要 | 描述 |
---|---|---|---|
LineItemNumber | 數值 | Y | 行項目編號,從 0 開始 |
OfferId | 字串 | Y | 供應項目的標識碼 |
SubscriptionId | 字串 | Y | 訂用帳戶的標識碼 |
FriendlyName | 字串 | 否 | 合作夥伴所定義的訂用帳戶易記名稱,以協助釐清 |
數量 | 數值 | Y | 授權或實例數目 |
PartnerIdOnRecord | 字串 | 否 | 記錄夥伴的 PartnerID |
屬性 | Object | 否 | 包含 “ObjectType”: “OrderLineItem” |
要求範例
更新為年度計費
PATCH https://api.partnercenter.microsoft.com/v1/customers/4d3cf487-70f4-4e1e-9ff1-b2bfce8d9f04/orders/CF3B0E37-BE0B-4CDD-B584-D1A97D98A922 HTTP/1.1
Authorization: Bearer <token>
Accept: application/json
MS-RequestId: 17a2658e-d2cc-439b-a2f0-2aefd9344fbc
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
X-Locale: en-US
Content-Type: application/json
Host: api.partnercenter.microsoft.com
Content-Length: 414
Expect: 100-continue
{
"Id": null,
"ReferenceCustomerId": "4d3cf487-70f4-4e1e-9ff1-b2bfce8d9f04",
"BillingCycle" : "Annual",
"LineItems": [{
"LineItemNumber": 0,
"OfferId": "2828BE95-46BA-4F91-B2FD-0BEF192ECF60",
"SubscriptionId": "aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e",
"FriendlyName": "Some friendly name",
"Quantity": 2,
"PartnerIdOnRecord": null,
"Attributes": {
"ObjectType": "OrderLineItem"
}
}
],
"CreationDate": null,
"Attributes": {
"ObjectType": "Order"
}
}
REST 回應
如果成功,這個方法會在回應本文中傳回更新的訂閱順序。
回應成功和錯誤碼
每個回應都隨附 HTTP 狀態碼,會指出成功與否以及其他的偵錯資訊。 請使用網路追蹤工具來讀取此錯誤碼、錯誤類型和其他參數。 如需完整清單,請參閱錯誤碼。
回應範例
HTTP/1.1 200 OK
Content-Length: 1135
Content-Type: application/json; charset=utf-8
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
MS-RequestId: 17a2658e-d2cc-439b-a2f0-2aefd9344fbc
MS-CV: WtFy3zI8V0u2lnT9.0
MS-ServerId: 020021921
Date: Wed, 25 Jan 2017 23:01:08 GMT
{
"id": "cf3b0e37-be0b-4cdd-b584-d1a97d98a922",
"referenceCustomerId": "4d3cf487-70f4-4e1e-9ff1-b2bfce8d9f04",
"billingCycle": "Annual",
"lineItems": [{
"lineItemNumber": 0,
"offerId": "195416C1-3447-423A-B37B-EE59A99A19C4",
"subscriptionId": "bbbb1b1b-cc2c-dd3d-ee4e-ffffff5f5f5f",
"friendlyName": "new offer purchase",
"quantity": 5,
"links": {
"subscription": {
"uri": "/customers/4d3cf487-70f4-4e1e-9ff1-b2bfce8d9f04/subscriptions/bbbb1b1b-cc2c-dd3d-ee4e-ffffff5f5f5f",
"method": "GET",
"headers": []
}
}
},
{
"lineItemNumber": 1,
"offerId": "2828BE95-46BA-4F91-B2FD-0BEF192ECF60",
"subscriptionId": "aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e",
"friendlyName": "Some friendly name",
"quantity": 2,
"links": {
"subscription": {
"uri": "/customers/4d3cf487-70f4-4e1e-9ff1-b2bfce8d9f04/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e",
"method": "GET",
"headers": []
}
}
}
],
"creationDate": "2017-01-25T14:53:12.093-08:00",
"links": {
"self": {
"uri": "/customers/4d3cf487-70f4-4e1e-9ff1-b2bfce8d9f04/orders/cf3b0e37-be0b-4cdd-b584-d1a97d98a922",
"method": "GET",
"headers": []
}
},
"attributes": {
"etag": "eyJpZCI6ImNmM2IwZTM3LWJlMGItNGNkZC1iNTg0LWQxYTk3ZDk4YTkyMiIsInZlcnNpb24iOjJ9",
"objectType": "Order"
}
}