Skip to documentation
Navigator integration

Match Supplementary Navigator Order

Perform Match Supplementary Navigator Order through Navigator.

View as Markdown
dynasplint_match_supplementary_navigator_order
writedynasplint_navigator

Inputs

  • order_candidate
    json
    Order Candidate

    Optional JSON value.

  • match_requested
    boolean
    Match Requested

    Optional true-or-false value.

    Default: false

  • 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.

  • local_timezone
    text
    Local Timezone

    Optional text value.

    Default: "America/New_York"

Outputs

  • attemptedAttempted
  • supplementarySupplementary
  • new_orderNew Order
  • matched_external_order_idMatched External Order Id
  • orders_in_progressOrders In Progress
  • candidates_comparedCandidates Compared
  • matching_ordersMatching Orders
  • review_reasonsReview Reasons
  • errorError

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
{
  "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
{
  "type": "object",
  "properties": {
    "error": {},
    "attempted": {},
    "new_order": {},
    "supplementary": {},
    "review_reasons": {},
    "matching_orders": {},
    "orders_in_progress": {},
    "candidates_compared": {},
    "matched_external_order_id": {}
  },
  "additionalProperties": true
}
View all Navigator actions