# Match Supplementary Navigator Order

> Perform Match Supplementary Navigator Order through Navigator.

Source: [https://genhealth.ai/docs/workflows/integrations/navigator/dynasplint_match_supplementary_navigator_order](https://genhealth.ai/docs/workflows/integrations/navigator/dynasplint_match_supplementary_navigator_order)

Integration: [Navigator](https://genhealth.ai/docs/workflows/integrations/navigator.md)

- Handler: `dynasplint_match_supplementary_navigator_order`

- Connection type: `dynasplint_navigator`

## Inputs

- `order_candidate` — Order Candidate (json)
  Optional JSON value.
- `match_requested` — Match Requested (boolean)
  Optional true-or-false value.
  Default: `false`
- `document_id` — Document Id (text)
  Optional text value.
- `fax_received_at` — Fax Received At (text, required)
  Required text value.
- `territory_id` — Territory Id (text, required)
  Required text value.
- `territory_source` — Territory Source (text, required)
  Required text value.
- `last_name_prefix` — Last Name Prefix (text)
  Optional text value.
- `ingress_provenance` — Ingress Provenance (text)
  Optional text value.
- `trusted_route_id` — Trusted Route Id (text)
  Optional text value.
- `routing_branch` — Routing Branch (text)
  Optional text value.
- `local_timezone` — Local Timezone (text)
  Optional text value.
  Default: `"America/New_York"`

## Outputs

- `attempted` — Attempted
- `supplementary` — Supplementary
- `new_order` — New Order
- `matched_external_order_id` — Matched External Order Id
- `orders_in_progress` — Orders In Progress
- `candidates_compared` — Candidates Compared
- `matching_orders` — Matching Orders
- `review_reasons` — Review Reasons
- `error` — Error

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",
  "required": [
    "fax_received_at",
    "territory_id",
    "territory_source"
  ],
  "properties": {
    "document_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "territory_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "local_timezone": {
      "type": "string",
      "default": "America/New_York",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "routing_branch": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "fax_received_at": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "match_requested": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "order_candidate": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "last_name_prefix": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "territory_source": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "trusted_route_id": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    },
    "ingress_provenance": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "attempted": {},
    "new_order": {},
    "supplementary": {},
    "review_reasons": {},
    "matching_orders": {},
    "orders_in_progress": {},
    "candidates_compared": {},
    "matched_external_order_id": {}
  },
  "additionalProperties": true
}
```
