如何获取Azure订阅的结算周期的日期

时间:2015-09-10 06:30:59

标签: c# .net azure

我需要Azure订阅结算日期来计算当前结算周期中的未结帐单金额。 要计算使用量,我使用Azure Billing API(价目表API和使用API​​)。从这里我只能获得时间戳的用法。

string requestRateCardAPIurl = String.Format("https://management.azure.com/subscriptions/{0}/providers/Microsoft.Commerce/UsageAggregates?api-version=2015-06-01-preview&reportedstartTime=2015-09-01+00%3a00%3a00Z&reportedEndTime=2015-09-07+00%3a00%3a00Z", subscriptionId);

string requestUsageAPIurl = String.Format("{0}/{1}/{2}/{3}",
                   "https://management.azure.com",
                   "subscriptions",
                   subscriptionId,
                   "providers/Microsoft.Commerce/RateCard?api-version=2015-06-01-preview&$filter=OfferDurableId eq 'ms-azr-0059p' and Currency eq 'USD' and Locale eq 'en-US' and RegionInfo eq 'US'");

是否有任何API或某些功能来获取结算周期明细?

0 个答案:

没有答案