# Check Upload Status

> Perform Check Upload Status through DocuTrack.

Source: [https://genhealth.ai/docs/workflows/integrations/docu-track/docutrack_get_upload_status](https://genhealth.ai/docs/workflows/integrations/docu-track/docutrack_get_upload_status)

Integration: [DocuTrack](https://genhealth.ai/docs/workflows/integrations/docu-track.md)

- Handler: `docutrack_get_upload_status`

- Connection type: `docutrack`

## Inputs

- `batch_id` — Batch Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `batch_id` — Batch Id
- `status` — Status
- `docutrack_document_ids` — Docutrack Document Ids
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

- External effect: `read`
- Confirmation recommended: no
- Retry safe: yes
- Dry run supported: no

## Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

### Input schema

```json
{
  "type": "object",
  "required": [
    "batch_id"
  ],
  "properties": {
    "batch_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "status": {},
    "success": {},
    "batch_id": {},
    "docutrack_document_ids": {}
  },
  "additionalProperties": true
}
```
