Create Navigator Order
Perform Create Navigator Order through Navigator.
dynasplint_create_navigator_orderwritedynasplint_navigator
Inputs
- Order Candidate
order_candidatejsonOptional JSON value.
- Document Id
document_idtextOptional text value.
- Fax Received At
fax_received_attextrequiredRequired text value.
- Territory Id
territory_idtextrequiredRequired text value.
- Territory Source
territory_sourcetextrequiredRequired text value.
- Last Name Prefix
last_name_prefixtextOptional text value.
- Ingress Provenance
ingress_provenancetextOptional text value.
- Trusted Route Id
trusted_route_idtextOptional text value.
- Routing Branch
routing_branchtextOptional text value.
- Test Lane Only
test_lane_onlybooleanOptional true-or-false value.
Default:
false - Attach Source Document
attach_source_documentbooleanOptional true-or-false value.
Default:
false - Local Timezone
local_timezonetextOptional text value.
Default:
"America/New_York" - Dry Run
dry_runbooleanOptional true-or-false value.
Default:
true - Swo Demographics
swo_demographicsjsonOptional JSON value.
- Swo Diagnoses
swo_diagnosesjsonOptional JSON value.
- Swo Order
swo_orderjsonOptional JSON value.
Outputs
successSuccesscreatedCreateddry_runDry Runcustomer_idCustomer Idorder_idOrder IddispositionDispositionmatched_order_idMatched Order Idexisting_customerExisting Customerready_to_verifyReady To VerifyblockersBlockersleft_for_staffLeft For Staffunmapped_productsUnmapped Productssource_document_statusSource Document StatuserrorError
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
}