API Payout access

I’ve created a private app with following permissions:

read_orders, read_customers, read_shopify_payments_payouts, read_shopify_payments_accounts

Following query returns an error:

{
  shopifyPaymentsAccount {
    payouts (first: 1){
     edges{ 
      node {
	id
	issuedAt
	status
	net {
	 amount
	 currencyCode
	}
	transactionType
	summary {
         adjustmentsFee {
	  amount
         }
	}
      }
     }
   }
  }
}

Error:

Access denied for summary field. Required access: `read_shopify_payments` access scope. Also: User must have the shopify_payments_transfers permission.

read_shopify_payments is nort available in the Admin UI but I thought it should work. If I remove

summary { adjustmentsFee { amount } }

from the query above, there is no errror.

Can I get this fixed?

Thanks

Zin

1 Like

I also hit this error when querying below. I saw some other posts listing the same issue with no fix.

{
  shopifyPaymentsAccount {
    id
  }
}