Access denied for shopifyPaymentsAccount field. Required access: the `read_shopify_payments` or the `read_shopify_payments_accounts` access scope

Here is my graph QL:

        query Payouts($first: Int) {
            shopifyPaymentsAccount {
                payouts(first: $first) {
                    edges {
                        node {
                            id
                            issuedAt
                            net {
                                amount
                                currencyCode
                            }
                            summary {
                                adjustmentsFee {
                                    amount
                                }
                                adjustmentsGross {
                                    amount
                                }
                                chargesFee {
                                    amount
                                }
                                chargesGross {
                                    amount
                                }
                                refundsFee {
                                    amount
                                }
                                refundsFeeGross {
                                    amount
                                }
                                reservedFundsFee {
                                    amount
                                }
                                reservedFundsGross {
                                    amount
                                }
                                retriedPayoutsGross {
                                    amount
                                }
                                retriedPayoutsFee {
                                    amount
                                }
                            }
                            transactionType
                            legacyResourceId
                        }
                    }
                }
            }
        }";

When I try to request the scopes, I get this error:

What happened?

Oauth error missing_shopify_permission: read_shopify_payments

Here is my OAuth:

http://jmatestshop.myshopify.com/admin/oauth/authorize?client_id=x&scope=read_shopify_payments,read_shopify_payments_payouts,write_draft_orders,read_draft_orders,read_all_orders,write_inventory,write_products,write_orders,read_products,read_product_listings,write_product_listings,read_fulfillments,write_fulfillments,read_assigned_fulfillment_orders,write_assigned_fulfillment_orders,read_third_party_fulfillment_orders,write_third_party_fulfillment_orders,read_merchant_managed_fulfillment_orders,write_merchant_managed_fulfillment_orders&redirect_uri=https://connexforquickbooks.com/integration/success?connectionName=shopify

Hi Joseph,

If you run the currentAppInstallation query, do you see read_shopify_payments or read_shopify_payments_accounts in the return?

query AccessScopeList {
  currentAppInstallation {
    accessScopes {
      handle
    }
  }
}

Also, if the scope was added after the app was initially authorized, you’ll need to reauthorize the app to apply the new scope.