Seller dashboards - AWS Marketplace

Seller dashboards

AWS Marketplace provides dashboards powered by Amazon QuickSight with charts, graphs, and insights that help you access and analyze financial and sales data. The seller dashboards include:

Dashboards for finance operations
Dashboards for sales operations
  • Agreements and renewals dashboard – Provides information about agreements and renewals within 24 hours of signing an agreement in AWS Marketplace.

  • Usage dashboard – Provides visualizations and fine-grained data for customers using SaaS and server usage-based products.

Dashboards are available to AWS Marketplace sellers who have the appropriate permissions.

Accessing dashboards

By default, AWS Marketplace system administrators for seller accounts have access to all dashboards on the Insights tab in the AWS Marketplace Management Portal. System administrators can create an AWS Identity and Access Management (IAM) policy to provide access for specific dashboards to other users in the seller company.

Note

In September 2023, we will no longer support access to seller dashboards enabled by legacy IAM permissions. Update your IAM permissions using the new Amazon Resource Name (ARN) format in the code examples below.

For information about creating policies, see Creating IAM policies.

Dashboard policy

Use one of the following policy to provide access to the billed revenue dashboard and the collections and disbursements dashboard.

You can provide access to current and future AWS Marketplace resources (including dashboards and reports) based on current and future data feeds, using the following code example:

{ "Version": "2012-10-17", "Statement": [{ "Effect": "Allow", "Action": [ "aws-marketplace:GetSellerDashboard" ], "Resource": [ "arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/*", ] }] }

Alternatively, you can provide access to one or more dashboards by including the specific ARN section, as shown in the following code example. For example, to provide access to only the billed revenue dashboard, agreements and renewals dashboard, and usage dashboard, remove this line from the following code example: arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/CollectionsAndDisbursements_V1

{ "Version": "2012-10-17", "Statement": [{ "Effect": "Allow", "Action": [ "aws-marketplace:GetSellerDashboard" ], "Resource": [ "arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/BilledRevenue_V1", "arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/ReportingData/BillingEvent_V1/Dashboard/CollectionsAndDisbursements_V1", "arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/ReportingData/Agreement_V1/Dashboard/AgreementsAndRenewals_V1" "arn:aws:aws-marketplace::<awsAccountID>:AWSMarketplace/ReportingData/Usage_V1/Dashboard/Usage_V1" "arn:aws:aws-marketplace::123456789012:AWSMarketplace/ReportingData/TaxItem_V1/Dashboard/Tax_V1" ] }] }
Note

For information about creating AWS Identity and Access Management (IAM) policies, see Creating IAM policies in the AWS Identity and Access Management User Guide.