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: