# Create Navigator Order

> Perform Create Navigator Order through Navigator.

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

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

- Handler: `dynasplint_create_navigator_order`

- Connection type: `dynasplint_navigator`

## Inputs

- `order_candidate` — Order Candidate (json)
  Optional JSON value.
- `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.
- `test_lane_only` — Test Lane Only (boolean)
  Optional true-or-false value.
  Default: `false`
- `attach_source_document` — Attach Source Document (boolean)
  Optional true-or-false value.
  Default: `false`
- `local_timezone` — Local Timezone (text)
  Optional text value.
  Default: `"America/New_York"`
- `dry_run` — Dry Run (boolean)
  Optional true-or-false value.
  Default: `true`
- `swo_demographics` — Swo Demographics (json)
  Optional JSON value.
- `swo_diagnoses` — Swo Diagnoses (json)
  Optional JSON value.
- `swo_order` — Swo Order (json)
  Optional JSON value.

## Outputs

- `success` — Success
- `created` — Created
- `dry_run` — Dry Run
- `customer_id` — Customer Id
- `order_id` — Order Id
- `disposition` — Disposition
- `matched_order_id` — Matched Order Id
- `existing_customer` — Existing Customer
- `ready_to_verify` — Ready To Verify
- `blockers` — Blockers
- `left_for_staff` — Left For Staff
- `unmapped_products` — Unmapped Products
- `source_document_status` — Source Document Status
- `error` — Error

Output schema completeness: `best_effort_declared`

## Safety

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

## 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": {
    "dry_run": {
      "type": "boolean",
      "default": true,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "swo_order": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "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"
    },
    "swo_diagnoses": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "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"
    },
    "test_lane_only": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "fax_received_at": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "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"
    },
    "swo_demographics": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "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"
    },
    "attach_source_document": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "created": {},
    "dry_run": {},
    "success": {},
    "blockers": {},
    "order_id": {},
    "customer_id": {},
    "disposition": {},
    "left_for_staff": {},
    "ready_to_verify": {},
    "matched_order_id": {},
    "existing_customer": {},
    "unmapped_products": {},
    "source_document_status": {}
  },
  "additionalProperties": true
}
```
