Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

API Payout access

API Payout access

Denizthemenace
Shopify Partner
29 2 10

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

Reply 1 (1)

elmer_taza
Visitor
1 0 0

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

{
  shopifyPaymentsAccount {
    id
  }
}