更新合作伙伴计费对象信息
适用于:合作伙伴中心 | 由世纪互联运营的合作伙伴中心 | Microsoft Cloud for US Government 合作伙伴中心
汇报合作伙伴的计费配置文件
先决条件
- 合作伙伴中心身份验证中所述的凭据。 此方案只支持使用应用凭据和用户凭据进行身份验证。
C#
若要更新合作伙伴计费配置文件,请检索现有的配置文件。 更新配置文件后,使用 IAggregatePartner.Profiles 集合并调用 BillingProfile 属性。 最后,调用 Update() 方法。
// IAggregatePartner partnerOperations;
BillingProfile existingBillingProfile = partnerOperations.Profiles.BillingProfile.Get();
// update the profile with a purchase order number
existingBillingProfile.PurchaseOrderNumber = new Random().Next(9000, 10000).ToString(CultureInfo.InvariantCulture);
BillingProfile updatedPartnerBillingProfile = partnerOperations.Profiles.BillingProfile.Update(existingBillingProfile);
示例: 控制台测试应用。 项目:合作伙伴中心 SDK 示例 类:UpdateBillingProfile.cs
REST 请求
请求语法
方法 | 请求 URI |
---|---|
PUT | {baseURL}/v1/profiles/billing HTTP/1.1 |
请求标头
有关详细信息,请参阅合作伙伴中心 REST 标头。
请求正文
无。
请求示例
PUT https://api.partnercenter.microsoft.com/v1/profiles/billing HTTP/1.1
Authorization: Bearer <token>
Accept: application/json
MS-RequestId: 9231559e-ed95-41e4-810b-e754ae32dc2f
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
Content-Length: 613
Expect: 100-continue
{
"CompanyName":"TEST_TEST_BugBash1",
"Address":{
"Country":"US",
"Region":null,
"City":"Redmond",
"State":"WA",
"AddressLine1":"1 Microsoft Way",
"AddressLine2":"","PostalCode":"98052",
"FirstName":null,
"LastName":null,
"PhoneNumber":null
},
"PrimaryContact":{
"FirstName":"Test",
"LastName":"Customer",
"Email":null,
"PhoneNumber":""
},
"PurchaseOrderNumber":"9888",
"TaxId":<TaxId>,
"BillingCurrency":"USD",
"Links":{
"Self":{
"Uri":"/profiles/billing",
"Method":"GET","Headers":[]
}
},
"Attributes":{
"Etag":<etag>,
"ObjectType":"BillingProfile"
}
}
REST 响应
如果成功,此方法在响应正文中返回 BillingProfile 对象。
响应的成功和错误代码
每个响应都带有一个 HTTP 状态代码,用于指示成功或失败以及其他调试信息。 请使用网络跟踪工具来读取此代码、错误类型和其他参数。 有关完整列表,请参阅错误代码。
响应示例
HTTP/1.1 200 OK
Content-Length: 568
Content-Type: application/json; charset=utf-8
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
MS-RequestId: 9231559e-ed95-41e4-810b-e754ae32dc2f
Date: Mon, 21 Mar 2016 05:47:16 GMT
{
"CompanyName":"TEST_TEST_BugBash1",
"Address":{
"Country":"US",
"Region":null,
"City":"Redmond",
"State":"WA",
"AddressLine1":"1 Microsoft Way",
"AddressLine2":"","PostalCode":"98052",
"FirstName":null,
"LastName":null,
"PhoneNumber":null
},
"PrimaryContact":{
"FirstName":"Test",
"LastName":"Customer",
"Email":null,
"PhoneNumber":""
},
"PurchaseOrderNumber":"9888",
"TaxId":<TaxId>,
"BillingDay":5;
"BillingCurrency":"USD",
"Links":{
"Self":{
"Uri":"/profiles/billing",
"Method":"GET","Headers":[]
}
},
"Attributes":{
"Etag":<etag>,
"ObjectType":"BillingProfile"
}
}