# Retrieve the output data from a completed task execution Get task execution output by parameters Endpoint: GET /task-execution-outputs/{taskNameSlug}/{dataspaceId}/{taskExecutionId} Version: 1.0.0 Security: bearerAuth ## Path parameters: - `taskNameSlug` (string, required) URL-friendly task name slug Example: "categorize-document" - `dataspaceId` (string, required) Short dataspace ID with sds- prefix Example: "sds-abc12345" - `taskExecutionId` (string, required) UUID of the task execution Example: "789e0123-e89b-12d3-a456-426614174002" ## Response 200 fields (application/json): - `taskExecutionId` (string, required) UUID of the task execution Example: "789e0123-e89b-12d3-a456-426614174002" - `taskNameSlug` (string, required) URL-friendly task name slug Example: "categorize-document" - `dataspaceId` (string, required) Short dataspace ID with sds- prefix Example: "sds-abc12345" - `contentType` (string, required) MIME type of the output Example: "application/json" - `data` (object, required) Task execution output data Example: {"category":"Traffic Citation","categoryId":"82fe7c76-469d-4de7-826b-ce1044596a14","confidence":"high","justification":"Document clearly identifies as a parking citation"} - `retrievedAt` (string, required) When the output was retrieved Example: "2025-01-15T10:35:00Z" ## Response 400 fields (application/json): - `error` (string) Example: "Invalid task execution ID format" ## Response 404 fields (application/json): - `error` (string) Example: "Task execution output not found for task categorize-document, execution 789e0123-e89b-12d3-a456-426614174002" ## Response 500 fields (application/json): - `error` (string) Example: "Failed to retrieve task execution output"