How To: Send data to Embeddables
Sending data server-side to the Embeddables API
Although most user events occur when the user interacts with your Embeddable, meaning Embeddables will automatically capture that event, there are times when user events occur elsewhere.
For example, a user completing a doctor’s appointment, or a user completing a purchase that isn’t handled by Embeddables’ Stripe integration.
In those cases, you can send data to the Embeddables API using a server-side request.
How to send data to Embeddables
Generate an Embeddables API key
- Contact the Embeddables team to generate an API key for your project.
- API keys are Restricted Keys, and always start with
rk_
- for example:rk_myexampleapikey
.
Prepare your event data
- Create a JSON object with the following required fields:
embeddable_id
: The ID of your Embeddabletimestamp
: The time the event occurred (in ISO 8601 format)custom_event_name
: A name for your custom event (must be snake_case)custom_event_props
: Any custom properties as a JSON stringidentifiers
: A list of key-value pairs to identify the user (e.g., email)
The identifiers
field is an array of objects, each containing a key
and value
. Currently, we only support one identifier per request (i.e. one object in the array).
Watch out for this: The value
field must be a stringified JSON value. E.g. for email addresses, the value must be "\"test@test.com\""
(note the double quotes).
Send the event to the API
- Make a POST request to
/projects/{projectId}/events
- Include your API key in the
X-Api-Key
header - Send the event data in the request body
Example request:
The API will return a 200 status code if the event was successfully created. If there are any issues with the request (e.g., invalid API key, missing required fields), you’ll receive an appropriate error response.