Persona
Share a Persona through an embeddable widget or voice experience.
Persona sharing creates a hosted Persona URL and embed configuration for text, microphone, camera, hybrid, call, voice-note, and widget-style layouts.
Types
Widget types
- Persona widget
- Embeddable script with text, microphone, camera, and hybrid interaction controls.
- Persona voice
- Voice-focused widget with texting, voice notes, calls, and optional video calls.
- Hosted Persona page
- Public persona.me link based on the Persona embed name.
Settings
Interaction settings
- Enable or disable textbox input.
- Enable or disable microphone input.
- Enable or disable camera input.
- Enable hybrid question/info mode.
- Choose bottom-left or bottom-right position.
- Set language on share links where supported.
Voice
Voice layouts
- Standard call
- Default voice-note and call experience.
- Texting only
- Voice-note style without profile and call switcher.
- Calling with option for texting
- Phone call first, with text option available.
- Call only
- Phone call only.
- Calling small widget
- Compact call-only widget style.
Embed
Embed code
The share modal saves embed configuration to the Persona instance and provides script code to copy into a website.
Persona widget embed
HTML<script defer src="https://bhuman-persona-widget.s3.us-east-2.amazonaws.com/bhuman-persona-widget.js"></script>
<script>
const config = {
instance_id: "PERSONA_INSTANCE_ID",
user_id: "USER_ID",
position: "bottom-right",
textEnabled: true,
micEnabled: true,
videoEnabled: false
};
window.addEventListener("load", () => {
window.RenderWidget(config);
});
</script>