latestOpenAPI 3.1.02026-08-08264458.4 KB

5e35babfb8d2

internal

Get processor results for the version given

Shows the processor results stored in the database for the resource_id

get/versions/{version_id}/processor_results

Path parameters

idinteger required

The version ID is a unique integer and can be obtained from the list of versions for a dataset.

Response

A JSON representation of processor results for the version ID.

idinteger
resource_idinteger
processing_type'excel_to_csv' | 'compressed_info' | 'frictionless'
parent_idinteger
completion_state'not_started' | 'processing' | 'success' | 'error'
messagestring
structured_infostring
created_atstring date-time
updated_atstring date-time

Example response

[
  {
    "id": 27,
    "resource_id": 48,
    "processing_type": "excel_to_csv",
    "parent_id": 747,
    "completion_state": "success",
    "message": "Completed processing with no errors.",
    "structured_info": "{\"cat\": \"dog\"}"
  }
]