<!--
{
  "availability" : [
    "iOS: 17.4.0 -",
    "iPadOS: 17.4.0 -",
    "macCatalyst: 17.4.0 -",
    "macOS: 14.4.0 -",
    "tvOS: 17.4.0 -",
    "visionOS: 1.1.0 -",
    "watchOS: 10.4.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "StoreKit",
  "identifier" : "/documentation/StoreKit/ExternalPurchase/canPresent",
  "metadataVersion" : "0.1.0",
  "role" : "Type Property",
  "symbol" : {
    "kind" : "Type Property",
    "modules" : [
      "StoreKit"
    ],
    "preciseIdentifier" : "s:8StoreKit16ExternalPurchaseO10canPresentSbvpZ"
  },
  "title" : "canPresent"
}
-->

# canPresent

A Boolean value that indicates whether the app can successfully present the notice sheet to inform people about external purchases.

```
static var canPresent: Bool { get async }
```

## Discussion

Check this property, as shown below, to determine whether your app can successfully call [`presentNoticeSheet()`](/documentation/StoreKit/ExternalPurchase/presentNoticeSheet()) to inform people before showing external purchases:

```swift
await externalPurchase.canPresent 
```

Check the value of this property again whenever the App Store storefront changes by using the [`updates`](/documentation/StoreKit/Storefront/updates) asynchronous sequence of [`Storefront`](/documentation/StoreKit/Storefront).

This property is `true` if all the following conditions are met:

- The current App Store storefront allows external purchase, and the person is eligible to make external purchases.
- Your app configures the <doc://com.apple.documentation/documentation/BundleResources/Entitlements/com.apple.developer.storekit.custom-purchase-link.allowed-regions> entitlement, or it configures the  <doc://com.apple.documentation/documentation/BundleResources/Entitlements/com.apple.developer.storekit.external-purchase> entitlement and the <doc://com.apple.documentation/documentation/BundleResources/Information-Property-List/SKExternalPurchase>, including the country code for the current App Store storefront.

Otherwise, this property is `false`.

When this property is `false`, check [`canMakePayments`](/documentation/StoreKit/AppStore/canMakePayments) to determine whether your app can offer in-app purchases using the StoreKit [In-App Purchase](/documentation/StoreKit/in-app-purchase) APIs. For more information, see [`canMakePayments`](/documentation/StoreKit/AppStore/canMakePayments).

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)