You're in the right place! Segment documentation is now part of Twilio Docs. The content you are used to is still here—just in a new home with a refreshed look.
Preact Destination
To create users in in Preact, use the Identify method. Users must be identified on the client side for events to appear in Preact.
To group users into accounts in Preact, use the Group method.
The Track method records events in Preact. Users must be identified on the client side for events to appear in Preact.
Preact can be useful for customer support. For that to work, you can send error events to Preact.
Add a "!" as the first character in the event name and Preact recognizes it as an error event. Properties sent with the event also show up in Preact.
Here's a JavaScript example:
1analytics.track('!Image upload error', {2File size: '890KB',3File extension: '.JPG',4Message: 'File size too large'5});