get_operation_result
Retrieve results from asynchronous operations in Microsoft Fabric using operation IDs from 202 Accepted responses. Check operation status and access completed results for data engineering and analytics tasks.
Instructions
Get the result of a long-running operation.
Retrieves the result of an asynchronous operation using its operation ID. Operation IDs are typically returned in the x-ms-operation-id header from API calls that return 202 Accepted responses.
Parameters: operation_id: The operation ID (from x-ms-operation-id header).
Returns: Dictionary with status, operation_id, message, and operation result.
Example: ```python result = get_operation_result("12345678-1234-1234-1234-123456789abc")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| operation_id | Yes |