# Get Template Dispatch Batch Status

> Perform Get Template Dispatch Batch Status through Brightree.

Source: [https://genhealth.ai/docs/workflows/integrations/brightree/brightree_get_template_dispatch_batch_status](https://genhealth.ai/docs/workflows/integrations/brightree/brightree_get_template_dispatch_batch_status)

Integration: [Brightree](https://genhealth.ai/docs/workflows/integrations/brightree.md)

- Handler: `brightree_get_template_dispatch_batch_status`

- Connection type: `brightree`

## Inputs

- `job_id` — Job Id (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `job_id` — Job Id
- `dispatcher_status` — Dispatcher Status
- `dispatcher_finished` — Dispatcher Finished
- `total_orders` — Total Orders
- `settled` — Settled
- `completed` — Completed
- `failed` — Failed
- `skipped` — Skipped
- `in_flight` — In Flight
- `not_started` — Not Started
- `is_complete` — Is Complete
- `completed_order_keys` — Completed Order Keys
- `failed_order_keys` — Failed Order Keys
- `skipped_order_keys` — Skipped Order Keys
- `in_flight_order_keys` — In Flight Order Keys
- `not_started_order_keys` — Not Started Order Keys
- `message` — Message
- `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",
  "properties": {
    "job_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "failed": {},
    "job_id": {},
    "message": {},
    "settled": {},
    "skipped": {},
    "success": {},
    "completed": {},
    "in_flight": {},
    "is_complete": {},
    "not_started": {},
    "total_orders": {},
    "dispatcher_status": {},
    "failed_order_keys": {},
    "skipped_order_keys": {},
    "dispatcher_finished": {},
    "completed_order_keys": {},
    "in_flight_order_keys": {},
    "not_started_order_keys": {}
  },
  "additionalProperties": true
}
```
