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, sales, and marketing 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 for marketing – Provides multiple dashboards to help you track your marketing data.

Dashboards for marketing

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 policies to provide access to some or all of the dashboards.

The following example provides access to current and future AWS Marketplace resources, including dashboards and reports. It uses all current and future data feeds:

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

You can also provide access to one or more dashboards by including their ARNs. The following example shows how to provide access to all the dashboards:

{ "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::awsAccountID:AWSMarketplace/ReportingData/TaxItem_V1/Dashboard/Tax_V1" "arn:aws:aws-marketplace::awsAccountID:AWSMarketplace/ReportingData/Marketing_V1/Dashboard/CustomerAgreements_V1" "arn:aws:aws-marketplace::awsAccountID:AWSMarketplace/ReportingData/Marketing_V1/Dashboard/ListingPerformance_V1" "arn:aws:aws-marketplace::awsAccountID:AWSMarketplace/ReportingData/Marketing_V1/Dashboard/SearchPerformance_V1" ] }] }

To remove access to a dashboard, delete it from the Resource section of the policy.

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.