Sending Users Data
Use /samples
endpoint to sync users' data with our API. You will need to split data points (samples) into batches of 1000 elements in size. It's okay to send such batches in parallel.
Considering that you'll be sending us numerous batches, we recommend that you create a system to track samples that have already been submitted. As an example, the simplest method to accomplish this is by sending batches in chronological order and keeping a record of the most recent synchronized batch for each device.
POST
/api/v1.1/samples
Headers
Request Body
Each Sample
in the data
field must follow the following structure:
See the full example in the json-file below:
Last updated