Skip to documentation
Navigator integration

Create Navigator Order

Perform Create Navigator Order through Navigator.

View as Markdown
dynasplint_create_navigator_order
writedynasplint_navigator

Inputs

  • order_candidate
    json
    Order Candidate

    Optional JSON value.

  • document_id
    text
    Document Id

    Optional text value.

  • fax_received_at
    textrequired
    Fax Received At

    Required text value.

  • territory_id
    textrequired
    Territory Id

    Required text value.

  • territory_source
    textrequired
    Territory Source

    Required text value.

  • last_name_prefix
    text
    Last Name Prefix

    Optional text value.

  • ingress_provenance
    text
    Ingress Provenance

    Optional text value.

  • trusted_route_id
    text
    Trusted Route Id

    Optional text value.

  • routing_branch
    text
    Routing Branch

    Optional text value.

  • test_lane_only
    boolean
    Test Lane Only

    Optional true-or-false value.

    Default: false

  • attach_source_document
    boolean
    Attach Source Document

    Optional true-or-false value.

    Default: false

  • local_timezone
    text
    Local Timezone

    Optional text value.

    Default: "America/New_York"

  • dry_run
    boolean
    Dry Run

    Optional true-or-false value.

    Default: true

  • swo_demographics
    json
    Swo Demographics

    Optional JSON value.

  • swo_diagnoses
    json
    Swo Diagnoses

    Optional JSON value.

  • swo_order
    json
    Swo Order

    Optional JSON value.

Outputs

  • successSuccess
  • createdCreated
  • dry_runDry Run
  • customer_idCustomer Id
  • order_idOrder Id
  • dispositionDisposition
  • matched_order_idMatched Order Id
  • existing_customerExisting Customer
  • ready_to_verifyReady To Verify
  • blockersBlockers
  • left_for_staffLeft For Staff
  • unmapped_productsUnmapped Products
  • source_document_statusSource Document Status
  • errorError

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
{
  "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
{
  "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
}
View all Navigator actions