Expo Channel Provider
Configuration
To configure the Expo integration, you'll need the following data:
| Parameter | Type | Description |
|---|---|---|
| access_token | string * |
In the Dashboard
The easiest way to configure this integration is through the MagicBell dashboard:
- Log in to your MagicBell dashboard.
- Navigate to Channels.
- Find and click on this channel name in the sidebar.
- Click the Configure Expo button.
- 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.
| Parameter | Type | Description |
|---|---|---|
| device_token | string * |
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"
}