GET
/
api
/
v1
/
tasks
/
status
/
{task_identifier}
curl --request GET \
  --url https://api.fieldwise.ai/api/v1/tasks/status/{task_identifier}
{
  "success": true,
  "data": {
    "message": "Processing document...",
    "progress": 50,
    "status": "processing",
    "title": "Document Processing"
  },
  "error": {
    "error_code": "RESOURCE_NOT_FOUND",
    "message": "Resource not found"
  },
  "meta": {
    "timestamp": "2023-11-07T05:31:56Z",
    "version": "1.0"
  }
}

Headers

X-API-Key
string | null

Path Parameters

task_identifier
string
required

Response

200
application/json
Successful Response
data
object
required

Response data

Example:
{
  "message": "Processing document...",
  "progress": 50,
  "status": "processing",
  "title": "Document Processing"
}
success
boolean
default:true
error
object | null

Schema for API error responses.

Example:
{
  "error_code": "RESOURCE_NOT_FOUND",
  "message": "Resource not found"
}
meta
object

Metadata for API responses