The Shop Pay Wallet API provides a user's data for developers to make a payment on their behalf. The data is split into separate resources each requiring their own scope. To [request buyer authorization](/docs/api/shop-pay-wallet/reference/index#authorizations) to access their Shop Pay Wallet you must, therefore, include a combination of the following scopes as a space-delimited string in the request.
Scope
Resource
PCI Compliance Required?
Details
uma:pay:address:read
Address No Use this scope to request access to the buyer's shipping address.
uma:pay:credit_card:read
Credit Card No Use this scope to request access to the buyer's credit card summary.
uma:pay:credit_card:read_payment_session
Payment Token No Use this scope to request access to a Payment Session ID. This scope is required when completing checkouts with Shopify Merchants.
uma:pay:credit_card:read_encrypted
Encrypted PAN Yes Use this scope to request access to the encrypted Primary Account Number (PAN) of the buyer's credit card. This scope is required when completing checkouts with non-Shopify merchants.
## Examples ### Non-PCI compliant partners The scope string you should provide to [request user authorization](/docs/api/shop-pay-wallet/reference/index#authorizations) is: ``` scope=uma:pay:address:read uma:pay:credit_card:read uma:pay:credit_card:read_payment_session ``` ### PCI compliant partners working with Shopify and non-Shopify merchants The scope string you should provide to [request user authorization](/docs/api/shop-pay-wallet/reference/index#authorizations) is: ``` scope=uma:pay:address:read uma:pay:credit_card:read uma:pay:credit_card:read_payment_session uma:pay:credit_card:read_encrypted ``` ## Related resources - [Getting Started with the Shop Pay Wallet API](/docs/api/shop-pay-wallet/getting-started) - [Authorization](/docs/api/shop-pay-wallet/authorization) - [Shop Pay Wallet API reference](/docs/api/shop-pay-wallet/reference/index) - [Testing the integration](/docs/api/shop-pay-wallet/testing) - [Shop Pay Wallet ecosystem](/docs/api/shop-pay-wallet/ecosystem)