# Get all operations for a planning List operations, optionally filtering by a time window. Query params: - start_timestamp / end_timestamp (Unix seconds, UTC). Both required to apply the window filter. - range_field (one of): • expectedTime95Interval → inbound p05 ≤ end AND outbound p95 ≥ start • expectedTime90Interval → inbound p10 ≤ end AND outbound p90 ≥ start • expectedTime → inbound expected ≤ end AND outbound expected ≥ start • scheduledTime → inbound scheduled ≤ end AND outbound scheduled ≥ start Endpoint: GET /v1/plannings/{id}/operations/ Version: 1.0.0 Security: tokenAuth ## Query parameters: - `end_timestamp` (integer, required) End time for filtering operations (Unix timestamp, seconds). - `range_field` (string) Which time reference to use for filtering operations. * expectedTime95Interval - expectedTime95Interval * expectedTime90Interval - expectedTime90Interval * expectedTime - expectedTime * scheduledTime - scheduledTime Enum: "expectedTime95Interval", "expectedTime90Interval", "expectedTime", "scheduledTime" - `start_timestamp` (integer, required) Start time for filtering operations (Unix timestamp, seconds). ## Path parameters: - `id` (string, required) ## Response 200 fields (application/json): - `id` (string) - `externalId` (string,null) - `planning` (string, required) - `description` (string,null) - `metadata` (any) - `isBlocker` (boolean, required) - `tagsDetails` (array, required) - `tagsDetails.uuid` (string, required) - `tagsDetails.category` (string, required) - `tagsDetails.value` (string, required) - `tagsDetails.required` (boolean) - `tagsDetails.color` (string,null) - `operationName` (string, required) - `group` (string,null) Group to which this operation belongs, e.g., a portcall. - `inboundTask` (any, required) - `outboundTask` (any, required) - `workspace` (string,null, required) ## Response 400 fields (application/json): - `detail` (string, required) ## Response 404 fields (application/json): - `detail` (string, required) ## Response 500 fields (application/json): - `detail` (string, required) ## Response 401 fields ## Response 403 fields