Prepare Deferred Intake Retry
Perform Prepare Deferred Intake Retry through GenHealth.
intake_prepare_deferred_retrywrite
Inputs
- Order Id
order_idtextOptional text value.
- Workflow Number
workflow_numbertextOptional text value.
- Patient Id
patient_idtextOptional text value.
- Patient State
patient_statetextOptional text value.
- Physician Docs
physician_docsjsonOptional JSON value.
- Doc Created At
doc_created_attextOptional text value.
- Document Ids
document_idstextOptional text value.
- Fax Submitted At
fax_submitted_attextOptional text value.
- Fax Verification Pending
fax_verification_pendingbooleanOptional true-or-false value.
Default:
false - Fax Verification Attempt
fax_verification_attemptnumberOptional numeric value.
Default:
1 - Local Patient Id
local_patient_idtextOptional text value.
- Retry Attempt
retry_attemptnumberOptional numeric value.
Default:
1 - Account Key
account_keytextOptional text value.
- Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false
Outputs
No named outputs are declared for this action.
Output schema completeness: unknown
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",
"properties": {
"dry_run": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"order_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"account_key": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"document_ids": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"patient_state": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"retry_attempt": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"doc_created_at": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"physician_docs": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"workflow_number": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"fax_submitted_at": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"local_patient_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"fax_verification_attempt": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"fax_verification_pending": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {},
"additionalProperties": true
}