Get partner billing profile
Applies to: Partner Center | Partner Center operated by 21Vianet | Partner Center for Microsoft Cloud for US Government
Gets an object representing the partner's billing profile.
Prerequisites
- Credentials as described in Partner Center authentication. This scenario supports authentication with App+User credentials only.
C#
To get a partner billing profile, use your IAggregatePartner.Profiles collection and call the BillingProfile property. Finally, call the Get() or GetAsync() methods.
// IAggregatePartner partnerOperations;
BillingProfile billingProfile = partnerOperations.Profiles.BillingProfile.Get();
Sample: Console test app. Project: PartnerCenterSDK.FeaturesSamples Class: GetBillingProfile.cs
REST request
Request syntax
Method | Request URI |
---|---|
GET | {baseURL}/v1/profiles/billing HTTP/1.1 |
Request headers
For more information, see Partner Center REST headers.
Request body
None.
Request example
GET https://api.partnercenter.microsoft.com/v1/profiles/billing HTTP/1.1
Authorization: Bearer <token>
Accept: application/json
MS-RequestId: a0dd6cde-b24c-413c-af24-416446dc5599
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
REST response
If successful, this method returns a BillingProfile object in the response body.
Response success and error codes
Each response comes with an HTTP status code that indicates success or failure and additional debugging information. Use a network trace tool to read this code, error type, and additional parameters. For the full list, see Error Codes.
Response example
HTTP/1.1 200 OK
Content-Length: 568
Content-Type: application/json; charset=utf-8
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
MS-RequestId: a0dd6cde-b24c-413c-af24-416446dc5599
Date: Tue, 22 Mar 2016 17:10:02 GMT
{
"companyName":"TEST_TEST_BugBash1",
"address":{
"country":"US",
"city":"Redmond",
"state":"WA",
"addressLine1":"1 Microsoft Way",
"addressLine2":"","postalCode":"98052"
},
"primaryContact":{
"firstName":"James",
"lastName":"Burk",
"phoneNumber":"2066017143"
},
"purchaseOrderNumber":"9888",
"taxId":"12-345678",
"billingCurrency":"USD",
"billingDay":5,
"profileType":"BillingProfile",
"links":{
"self":{
"uri":"/profiles/billing",
"method":"GET",
"headers":[]
}
},
"attributes":{
"etag":<etag>,
"objectType":"BillingProfile"
}
}