Authentication
UpdatedTo use the SDK, you’ll need to get two kinds of keys: A CDP API Key to send data to Customer.io and a Site ID, telling the SDK which workspace your messages come from.
To get your SDK keys and send data to the right places, you’ll need to set up your app as a data inAn integration that feeds data into Customer.io. integration in Customer.io, and route it to your workspace. The SDK lets you route data to any number of destinations, but you must connect it to your workspace destination to send data, like the people you identify, the events you track, and so on, to Customer.io.
If you haven’t already set up your app as an integration in Customer.io, do that first.
API Keys you’ll need
- API Key: This key, shown in code samples as
cdpApiKey
, lets you send data to Customer.io. You’ll need it to initialize the SDK. You’ll get this key when you set up your integration in Customer.io. - Site ID: This key tells the SDK which workspace your messages come from. You’ll use it to initialize the
CioMessagingInApp
package and send in-app messages from your workspace. If you’re upgrading from a previous version of the Customer.io SDK, it also serves as themigrationSiteId
.
Get your API Key
You’ll use your write key to initialize the SDK and send data to Customer.io; you’ll get this key from your mobile app’s integration card in Customer.io. If you haven’t already set up your Android integration in Customer.io, you’ll need to do that first.
- Go to Data & Integrations > Integrations.
- Select your iOS integration in the Overview tab. If you don’t see an iOS integration, you’ll need to set it up.
- Go to Settings and find your API Key. Copy this key into your initialization call. If you’re upgrading from a previous version of the SDK, you should keep the
siteId
that you used in previous versions as themigrationSiteId
in your config.func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool { ... let config = SDKConfigBuilder(cdpApiKey: "YOUR_CDP_API_KEY") .migrationSiteId(YOUR_SITE_ID) .autoTrackDeviceAttributes(true) CustomerIO.initialize(withConfig: config.build()) }
You’re not done yet
You still need your Site IDEquivalent to the user name you’ll use to interface with the Journeys Track API; also used with our JavaScript snippets. You can find your Site ID under Settings > Workspace Settings > API Credentials to initialize the CioMessagingInApp
package and to support people updating your app from a previous version of Customer.io SDK. See Get your Site ID below.
Set up a new integration
If you don’t already have a write key, you’ll need to set up a new data inAn integration that feeds data into Customer.io. integration in Customer.io. The “integration” represents your app and the stream of data that you’ll send to Customer.io.
- Go to Data & Integrations > Integrations and click Add Integration.
- Select the iOS integration.
- Enter a Name for your integration, like “My iOS App”.
- We’ll present you with a code sample containing a
cdpApiKey
that you’ll use to initialize the SDK. Copy this key and keep it handy; you’ll use it in your initialization call. - Click Complete Setup to finish setting up your integration.
Now the integrations Overview page shows that your iOS app is connected to your workspace. You can also connect your iOS app to any number of destinations if you want to send your mobile data to additional services—like your analytics provider, data warehouse, or CRM.


Get your Site ID
You’ll use your Site ID to initialize the CioMessagingInApp
package and send in-app messages from your workspace.
If you’re upgrading from a previous version, my can also set your Site ID as your migrationSiteId
. This key is used to send remaining tasks to Customer.io when your audience updates your app.
Go to and select Workspace Settings in the upper-right corner of the Customer.io app and go to API and Webhook Credentials.
Copy the Site ID for the set of credentials that you want to send your in-app messages from. If you don’t have a set of credentials, click Create Tracking API Key.
You’ll use this key to initialize the
CioMessagingInApp
package.func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool { ... let siteId = "YOUR_SITE_ID" let config = SDKConfigBuilder(cdpApiKey: "YOUR_CDP_API_KEY") .migrationSiteId(siteId) .autoTrackDeviceAttributes(true) CustomerIO.initialize(withConfig: config.build()) MessagingInApp .initialize(withConfig: MessagingInAppConfigBuilder(siteId: siteId, region: .US).build()) .setEventListener(self) }
Securing your credentials
To simplify things, code samples in our documentation sometimes show API keys directly in your code. But you don’t have to hard-code your keys in your app. You can use environment variables, management tools that handle secrets, or other methods to keep your keys secure if you’re concerned about security.
To be clear, the keys that you’ll use to initialize the SDK don’t provide read access to data in Customer.io; they only write data to Customer.io. A bad actor who found your credentials can’t use your keys to read data from our servers.