action contract_p_get_processing_stats { label: "Get processing runtime stats" description: "**This endpoint is in _preview_ and its interface may change.**\n\nCompute statistics over the documents in the inbox. These stats include:\n- mean\n- min\n- max\n- standard deviation\n- 50th percentile\n- 95th percentile\n- 99th percentile\n\nDocuments are grouped by their page count: this is currently the *only* supported group by attribute.\n\nDocuments can be further filter by any given start or end date: the filter will apply to the start\nprocessing date, and *not* to the done date.\n\n**Permission required:** view_statistics" provider: contract_p method: GET path: "/stats/{inbox_id}/processing" encoding: json input: { type: "object" properties: { end_date: { type: "string" format: "date-time" } group_by: { type: "string" } start_date: { type: "string" format: "date-time" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }