Endpoint
Request
Request Body
Array of items to include in the analysis. Must contain at least one item.
Item ID to include in the analysis (
item_ prefix). The item must belong to the specified profile and be in ACTIVE status.Response (202 Accepted)
Unique analysis ID (
analysis_ prefix). Use this ID with GET /analyses/:analysisId to check analysis status and retrieve results.Important Notes
Analysis runs asynchronously. The endpoint returns immediately with an analysis ID. Use GET /v1/analyses/:analysisId to poll for status and retrieve results once completed.
- All target items must be in
ACTIVEstatus. Items in other statuses will be rejected. - Only one analysis can run at a time per profile. Attempting to start a second analysis while one is in progress will return a
409error.
Error Codes
| Status | Code | Description |
|---|---|---|
| 400 | INVALID_ITEM_IDS | One or more items do not exist or do not belong to the specified profile |
| 404 | PROFILE_NOT_FOUND | The specified profile was not found |
| 409 | ANALYSIS_IN_PROGRESS | An analysis is already running for this profile |