# Check Delivery Proof

> Perform Check Delivery Proof through Brightree.

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

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

- Handler: `brightree_check_delivery_proof`

- Connection type: `brightree`

## Inputs

- `documents` — Documents (expression)
  Optional literal value or workflow expression.
- `delivery_proof_document_types` — Delivery Proof Document Types (multi_select, dynamic options)
  Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.

## Outputs

- `has_match` — Has Match
- `reason` — Reason

Output schema completeness: `best_effort_declared`

## Safety

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

## Schemas

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

### Input schema

```json
{
  "type": "object",
  "properties": {
    "documents": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "delivery_proof_document_types": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional list of selected values. Retrieve allowed values from the dynamic options endpoint.",
      "x-dynamic-options": true,
      "x-workflow-field-type": "multi_select"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "reason": {},
    "has_match": {}
  },
  "additionalProperties": true
}
```
