Airship

Send your event data from RudderStack to Airship.

Airship is an app experience platform that lets you create and deliver powerful in-app experiences with the help of engaging, personalized content and actionable customer insights.

RudderStack supports Airship as a destination to which you can seamlessly send your event data.

Find the open source transformer code for this destination in the GitHub repository.

Connection compatibility

Destination info
  • Status: Generally Available
  • Supported sources: Android, iOS , Web, Unity, AMP , Cloud, React Native , Flutter, Cordova, Warehouse, Shopify
  • Refer to it as AIRSHIP in the Integrations object.

Connection modes
SourceCloud modeDevice modeHybrid mode
AMPsupportednot supportednot supported
Androidsupportednot supportednot supported
Cloudsupportednot supportednot supported
Cordovasupportednot supportednot supported
Fluttersupportednot supportednot supported
iOSsupportednot supportednot supported
React Nativesupportednot supportednot supported
Shopifysupportednot supportednot supported
Unitysupportednot supportednot supported
Warehousesupportednot supportednot supported
Websupportednot supportednot supported
Supported message types
SourceIdentifyPageTrackScreenGroupAlias
Cloud mode
Supported sourcessupportednot supportedsupportednot supportedsupportednot supported

Getting started

warning

You must install the Airship SDK on your website/app to use this integration successfully. See the Airship documentation for more information on setting up the Airship SDK on your preferred platform.

Also, note that:

  • Before sending events to Airship through RudderStack, make sure to first create the channel and named user in Airship via the Airship SDK.
  • RudderStack supports enhancing the existing user profiles and sending custom events in cloud mode.

Once you have confirmed that the source platform supports sending events to Airship, follow these steps:

  1. From your RudderStack dashboard, add the source. Then, from the list of destinations, select Airship.
  2. Assign a name to your destination and click Next.

Connection settings

To successfully configure Airship as a destination, you will need to configure the following settings:

  • API Key: Enter your Airship token which is required by RudderStack to communicate with your Airship project and authenticate all supported event calls, that is, identify, track, and group.
  • App Key: Enter your Airship project’s app key which RudderStack requires for the track calls. You can obtain the app key by going to Settings > Project Details in your Airship dashboard.
  • EU data center: Turn on this setting if you’ve implemented your app in Airship’s European data center. If you’re unsure which data center you are on, reach out to Airship support.
  • Consent management settings: Configure the consent management settings for the specified source by choosing the Consent management provider from the dropdown and entering the relevant consent category IDs. See Consent Management in RudderStack for more information on this feature.

Identify

The identify call lets you uniquely identify a user and record any associated traits about them like their name, email, etc.

A sample identify call is shown below:

rudderanalytics.identify("1hKOmRA4el9Zt1WSfVJIVo4GRlm", {
  likes_movies: true,
  favorite_color: "purple",
  age: 13
});

In the above code snippet, RudderStack sends the Boolean values to Airship as tags, whereas the non-Boolean values are sent as attributes.

RudderStack maps some reserved traits to the predefined Airship attributes. See the Traits mapping section below for more information.

Tags

To successfully assign tags to Airship using the RudderStack identify events, you must create a tag group with the group key set to rudderstack_integration in Airship.

Note that this integration supports identify traits of Boolean data type only. Airship adds tags for the traits that are set to true and removes tags for the traits set to false.

Attributes

For identify traits that are not mapped to any predefined or custom-defined Airship attributes, you must create and enable those attributes in the Airship dashboard.

Track

The track call lets you capture user events along with the properties associated with them.

RudderStack sends the track events to Airship via their Custom Events API. You can use the event properties to personalize and trigger specific messages for your audience.

info
You need the Airship project’s App Key for authenticating the track calls.

A sample track call is shown below:

rudderanalytics.track("Product Clicked", {
  description: "Shoes viewed",
  brand: "Sneakers",
  colors: ["red", "blue"],
  items: [
    {
      text: "New Balance Sneakers",
      price: "$69.95"
    },
    {
      text: "G.I. Joe Sneakers",
      price: "$99.95"
    }
  ]
});

In the above snippet, the event name Product Clicked is automatically converted to product_clicked before sending to Airship.

info

The event name sent to Airship must not contain any upper case characters. Otherwise, Airship rejects it with a 400 status code.

RudderStack handles this scenario internally by converting any upper case characters to lower case and replacing any spaces with an underscore(_).

RudderStack also maps some event properties to the Airship properties before sending them over to Airship. See the Supported mappings section below for more information.

Group

The group call lets you link an identified user with a group such as a company, organization, or an account, and record any traits associated with that group, e.g., company name, number of employees, etc.

A sample group call is shown below:

rudderanalytics.group("5ea6247", {
  name: "Company Inc.",
  in_tecnology_domain: true,
  plan: "basic"
})

In the above code snippet, RudderStack sends the Boolean values to Airship as tags and the non-Boolean values as attributes.

warning
To successfully assign tags to Airship using the RudderStack group events, you must create a tag group with the group key set to rudderstack_integration_group in Airship. Similarly, you need to create the relevant attribute identifiers in Airship to set the attributes for the named users.

This integration supports group traits of type Boolean only. Airship adds tags for the traits that are set to true and removes tags for the traits set to false.

Supported mappings

RudderStack maps the following event properties to the Airship properties before sending them over to Airship.

See the Airship documentation for more information on how the externally-generated custom events are mapped.

RudderStack propertyAirship property
userId
Required
named_user_id
event
Required
name
propertiesproperties
valuevalue
interactionIdinteraction_id
interactionTypeinteraction_type
sessionIdsession_id

Note: RudderStack transforms this field based on the UUID v5 format using DNS as the reference namespace.
transactiontransaction
timestampoccurred

Traits mapping

RudderStack traitAirship attribute
address.citycity
address.countrycountry
address.postalcodezipcode
address.stateregion
createdAtaccount_creation
firstNamefirst_name
lastNamelast_name
namefull_name
phonemobile_phone

FAQ

Where can I find the Airship API key?

RudderStack requires the Airship API key to communicate with your Airship project. This is a mandatory field to set up the integration.

  1. In your Airship dashboard, go to Settings.
  2. In the Project configuration window, go to Tokens and click Manage.
  3. Click Create token.
  4. Assign a name for your token. Under Role, select All access from the dropdown:
Airship project token
  1. Once the token is created, copy and secure the credentials and click Got it.

Where can I obtain the Airship App Key?

  1. In your Airship dashboard, go to Settings.
  2. In the Project configuration window, look for the Project Details pane on the right side. You will find your project’s app key listed here.

How do I create a custom tag group in Airship?

  1. Go to Settings > Project configuration > Tag Groups and click Manage.

  2. Click Create Tag Group and enter the following settings:

    • Name: Enter the name for the tag group.
    • Description: Set additional information about the tag group in this field.
    • Group Key: Assign a unique ID for the tag group in this field. For example, to assign tags using the RudderStack identify events, you can set this to rudderstack-integration. For assigning tags using the group events, set this to rudderstack-integration-group.

See the Airship documentation for more information.

How do I create and enable attributes in Airship?

For identify traits that are not mapped to any predefined or custom-defined Airship attributes, you must create and enable those attributes in the Airship dashboard.

  1. Go to your Airship dashboard.
  2. Navigate to Audience > Attributes.
  3. Click Create Attribute.
  4. Enter the Attribute ID, Name, and select the attribute Type.
  5. Finally, click Add.
Airship new attributes

Questions? Contact us by email or on Slack