End Users
Create End User
Create a new end user in your project
POST
End users represent the people who wear devices and are subjects of recordings. They exist in your Bota project but don’t log into Bota directly.Documentation Index
Fetch the complete documentation index at: https://docs.bota.dev/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Requires an API key withend_users:write scope.
Request Body
Your system’s unique identifier for this user. Use this to link Bota end users to users in your application.
User’s email address.
User’s display name.
Arbitrary key-value metadata for your own use.
Response
Returns the created end user object.Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the end user (prefixed with eu_). |
external_id | string | Your system’s unique identifier for this user. |
email | string | User’s email address. |
name | string | User’s display name. |
metadata | object | Arbitrary key-value metadata. |
created_at | string | ISO 8601 timestamp of when the end user was created. |

