Device Registration
Every app install gets a unique install ID (UUID v4, generated on first launch). This is passed with every request via X-Om-Install-Id.
Device records track:
- Platform (ios/android)
- App version
- OS version
- Device model
- Push token
- Locale, timezone
- Last seen timestamp
- Active status
Segments
Segments define device targeting rules in JSON. Examples:
json{ "platform": "ios" }
{ "platform": "android", "min_app_version": "2.0.0" }
{ "locale": "en-US" }
Segments are used to target push notifications to a subset of devices.
