> ## Documentation Index
> Fetch the complete documentation index at: https://docs-dev-docs-event-stream-action-templates.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Learn how to enable universal links support for your Auth0 app in Apple Xcode using the Auth0 Dashboard.

# Enable Universal Links Support in Apple Xcode

Universal links establish a verified relationship between domains and applications, so both your Auth0 Application settings and your iOS application need to be in sync. To do this, you need to provide Auth0 with Apple Team ID and Bundle Identifier. You can enable universal links support for your Auth0-registered application using the <Tooltip tip="Auth0 Dashboard: Auth0's main product to configure your services." cta="View Glossary" href="/docs/glossary?term=Auth0+Dashboard">Auth0 Dashboard</Tooltip>.

## Obtain Apple Team ID and Bundle Identifier

1. To find your Apple **Team ID**, go to your [Apple developer account summary page](https://developer.apple.com/membercenter/index.action#accountSummary).
2. To find your iOS application's **Bundle identifier**, go to its [Xcode project settings](https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppDistributionGuide/ConfiguringYourApp/ConfiguringYourApp.html) page.

## Provide Apple Team ID and Bundle Identifier to Auth0

1. Go to [Dashboard > Applications > Applications](https://manage.auth0.com/#/clients) and select the name of the application to view.

   <Frame>
     <img src="https://mintcdn.com/docs-dev-docs-event-stream-action-templates/B7hSimOXFe7dopGk/docs/images/cdy7uua7fh8z/1ecNwGgFQZxdP57p0tp3jT/cd608fcfae22e195b604e2707e5a848d/App_List_-_EN.png?fit=max&auto=format&n=B7hSimOXFe7dopGk&q=85&s=f8603effe34d6a0a9843a9e0ba04051e" alt="Dashboard Applications List" width="1102" height="723" data-path="docs/images/cdy7uua7fh8z/1ecNwGgFQZxdP57p0tp3jT/cd608fcfae22e195b604e2707e5a848d/App_List_-_EN.png" />
   </Frame>
2. Scroll to the bottom of the **Settings** page, and select **Show Advanced Settings**.
3. Select **Device Settings**, provide the **Team ID** and the **App bundler identifier** values for your iOS application and select **Save Changes**.

   <Frame>
     <img src="https://mintcdn.com/docs-dev-docs-event-stream-action-templates/YlSGjDQ1BrChv4Jn/docs/images/cdy7uua7fh8z/YKKPtWtswHn2FZGFSVWNw/086b32e41b3fd446ac8aa678be33648d/Device_Settings_-_EN.png?fit=max&auto=format&n=YlSGjDQ1BrChv4Jn&q=85&s=1fd72cb1c2159080e4130795d89d5f29" alt="Dashboard Applications Application Settings Tab Advanced Settings Device Settings Tab" width="1150" height="744" data-path="docs/images/cdy7uua7fh8z/YKKPtWtswHn2FZGFSVWNw/086b32e41b3fd446ac8aa678be33648d/Device_Settings_-_EN.png" />
   </Frame>

## Test link

Check whether the universal links `apple-app-site-association` file is available for your application by navigating to the following URL in your browser: `{yourDomain}/apple-app-site-association`

If the link is successful, you will see the following JSON (formatted for readability):

```json lines theme={null}
{
  "applinks": {
    "apps": [],
    "details": [{
      "appID": "86WQXF56BC.com.auth0.Passwordless-Email",
      "paths": ["/ios/com.auth0.Passwordless-Email/*"]
    }]
  }
}
```
