Add data for a customer
POST/api/v1/customer/add-data
Adds a quiz response, a set of biomarker test results, or a lab results file to a customer's
record; test submissions and processed files create reports on the customer's history.
File submissions (type: "file") require the Uploads feature to be enabled for your business
(403 otherwise) and accept either fileBlob or s3FileUrl, never both. For large files,
set async: true to receive 202 with a jobId, then poll
GET /api/v1/customer/add-data/jobs/{id} for the result.
Request
Responses
- 201
- 202
- 400
- 401
- 403
- 404
- 500
Data added successfully
Accepted for asynchronous processing (file uploads only when async=true)
Validation failed
Business session is required
User does not belong to this business or feature is not enabled
Customer not found
Internal server error