<!--
{
  "availability" : [
    "iOS: 15.4.0 -",
    "iPadOS: 15.4.0 -",
    "tvOS: 16.4.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "BundleResources",
  "identifier" : "/documentation/BundleResources/Information-Property-List/SKExternalLinkAccount",
  "metadataVersion" : "0.1.0",
  "role" : "Property List Key",
  "symbol" : {
    "kind" : "Property List Key",
    "modules" : [
      "Bundle Resources"
    ],
    "preciseIdentifier" : "plist:Information_Property_List.SKExternalLinkAccount"
  },
  "title" : "SKExternalLinkAccount"
}
-->

# SKExternalLinkAccount

A dictionary that contains localized URLs to an external website for account creation or management.

## Discussion

Use this information property list key if your app has the [`com.apple.developer.storekit.external-link.account`](/documentation/BundleResources/Entitlements/com.apple.developer.storekit.external-link.account) entitlement.
Each key is a string that is a lowercase ISO 3166-1 alpha-2 country code, the value for which is a URL to the localized version of the external website for that locale.
The dictionary must contain a key with the string `*` that maps to a default URL.

The following shows a property list with a default URL and a specific URL for the `jp` locale:

```xml
<plist>
<dict>
    <key>SKExternalLinkAccount</key>
    <dict>
        <key>*</key>
        <string>https://example.com</string>
        <key>jp</key>
        <string>https://example.com/jp</string>
    </dict>
</dict>
</plist>
```

---

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)