Get Parse Status
Retrieve the parsing status and details for a specific data source
Last updated
Was this helpful?
Retrieve the parsing status and details for a specific data source
Last updated
Was this helpful?
Was this helpful?
GET /api/v1/providers/datasources/{id}/parse_status
Returns the current parsing status for a specific data source, including information about the last parse operation and any errors that occurred.
OK
Default error response
GET /api/v1/providers/datasources/{id}/parse_status HTTP/1.1
Host: your-tenant.cookiecloud.ai
Authorization: Bearer JWT
Accept: */*
{
"job_status": {
"id": "text",
"status": "text"
}
}
id
string
Required
The data source ID
curl -X GET "$BASE_URL/api/v1/providers/datasources/6961b032-3fd7-4baa-a230-146d1b70ec27/parse_status" \
-H "authorization: Bearer $VEZA_TOKEN"
Standard Response:
{
"value": {
"datasource_id": "6961b032-3fd7-4baa-a230-146d1b70ec27",
"status": "SUCCESS",
"last_parsed_at": "2022-01-13T20:53:29Z",
"parse_duration_seconds": 45,
"entities_processed": 1250,
"errors_count": 0,
"warnings_count": 2
}
}