パートナーの請求プロファイルを更新する
適用対象: パートナー センター | 21Vianet が運営するパートナー センター | 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"
}
}