Request the productList with the price
Feature Request
Is your feature request related to a problem? Please describe. Can you explain me how can I get the price list (Office 365 / Azure / OneTime) with the powershell command.
Describe the solution you would like Get-PartnerProductSKU -CountryCode "BE" -ProductID $ID Return all current stuff + price
Describe alternatives you have considered Connect on the partnerCenter website and manually download the current month price list.
Hi @qbihay,
Currently the only way to get pricing for lincesed based and one time purchases is from the published price list. There is not an API that provides this information. This is a frequently requested feature that the team behind the Partner Center API receives. It would be good to share this request in the Partner Center API and SDK Yammer group. That way you can a better idea from the team behing the API when this might be available.
Once this information is available programatically we will be sure to add the functionality to the module.
Hi @isaiahwilliams,
I saw you added https://github.com/Microsoft/Partner-Center-PowerShell/blob/master/src/PartnerCenter/Models/Orders/Pricing.cs to the repository. When does this return any data? I tried it on my own CustomerOrders, but it did not return anything:
PS C:\> $CustomerOrder = Get-PartnerCustomerOrder -CustomerId ***** -IncludePrice -OrderId *****
PS C:\> $CustomerOrder.LineItems[0]
FriendlyName : Office 365 ProPlus
LineItemNumber : 0
OfferId : *****
PartnerIdOnRecord :
ParentSubscriptionId :
Pricing :
ProvisioningContext : {}
Quantity : 24
SubscriptionId : *****
TermDuration : P1Y
TransactionType : New
The team responsible for the Partner Center API has committed to adding new price list features to the API. Right now there is not a timeline for when this new functionality will be available. Once it is I will be sure that functionality is added to this module.
Thanks for the update @isaiahwilliams! I'm looking forward to that update.
Is there an option to download the pricelist file via an API at least? The logic being if we can at least download the pricelist file in automated way rather than via a web browser that should suffice.