With a single API call from your app, the relevant section of Settings in the Shopify admin opens in an overlay and auto-scrolls to the field that needs editing. An extension of the initial March release.
Guide them in prose—"open Settings > ○○ > △△ and edit it"—and they get lost or skip a setting.
Just call the intent from your app, and the target Settings opens in an overlay and auto-scrolls to the card that needs editing.
edit:settings/NotificationsSenderEmailOpens the sender address settings for notification emails.
edit:settings/NotificationsStaffOpens notification settings for staff.
edit:settings/PaymentCaptureMethodOpens the payment capture method settings (automatic, manual, and so on).
edit:settings/GiftCardExpirationOpens the gift card expiration settings.
create:shopify/DeliveryProfileOpens the screen for creating a new Delivery Profile.
edit:shopify/DeliveryProfileOpens the edit screen for an existing Delivery Profile.
edit:settings/BusinessDetailsOpens the edit screen for business information (business details).
| Item | Initial release (March 2026) | This release (May 2026) |
|---|---|---|
| Positioning | First introduction of Settings intents | Expansion Addition of supported Settings categories |
| Number of intents added | Not specified | 7 types |
| Supported categories | Not specified | Notifications/Payments/Gift cards/Delivery/Business |
| Behavior pattern | Scrolls to the target card on the page stack | Follows the same behavior |
※ This article does not specify exactly which intents shipped in the initial release. For details, see "Read up on admin intents" and "supported Shopify resources."
edit: and create: as the two verbs, with settings/... and shopify/... as the two target families. Note that only Delivery Profile belongs to the shopify/ namespace.
An overlay on the page stack. After finishing editing Settings, the merchant can continue working in the app. The aim is to make the prompt-to-settings → return-to-app flow seamless.
It doesn't just open the Settings page — it scrolls directly to the specific card that needs editing. The design eliminates the merchant's "now where do I fix this?" search time.
Only "With a single API call" is stated. No specific endpoint, SDK function, or parameter spec is given in this article. For details, be sure to consult the "Read up on admin intents" documentation.
While the others only support edit: , the delivery profile also provides create:shopify/DeliveryProfile as well.Being able to branch in two stages — "create it if it doesn't exist, edit it if it does" —is what this means at the app-implementation level.
edit:settings/NotificationsSenderEmail and take the merchant directly to the sender email address setting.edit:settings/NotificationsStaff as a pair improves the coverage of your operational settings.create:shopify/DeliveryProfile(for new) /edit:shopify/DeliveryProfile(for existing). The merchant can edit it right there on the spot.edit:settings/BusinessDetails to scroll directly to the relevant card and have them fix it on the spot.edit:settings/PaymentCaptureMethod can be used in the same way.edit:settings/GiftCardExpiration , you can also build a consistency-check flow for expiration policies using the same pattern.