Expo Channel Provider

Configuration

To configure the Expo integration, you'll need the following data:

required fields are marked with an `*`
ParameterTypeDescription
access_tokenstring *

In the Dashboard

The easiest way to configure this integration is through the MagicBell dashboard:

  1. Log in to your MagicBell dashboard.
  2. Navigate to Channels.
  3. Find and click on this channel name in the sidebar.
  4. Click the Configure Expo button.
  5. Follow the on-screen instructions to complete the configuration.

Using the API

You can also configure the integration using the API.

Example payload:

{
  "access_token": "expo_access_token"
}

Channel Token

The channel token contains all the information (along with the config) necessary to deliver the notification on the Expo channel.

required fields are marked with an `*`
ParameterTypeDescription
device_tokenstring *

Example

{
  "device_token": "ExponentPushToken[xxxxxxxxxxxxxxxxxxxxxx]"
}

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "properties": {
    "device_token": {
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "device_token"
  ],
  "type": "object"
}