Skip to documentation
Authorizations integration

Push Authorization To Billing System

Perform Push Authorization To Billing System through Authorizations.

View as Markdown
authorization_push_to_billing_system
write

Inputs

  • document_id
    expressionrequired
    Document Id

    Required literal value or workflow expression.

  • auth_type
    expression
    Auth Type

    Optional literal value or workflow expression.

  • insurance_policy_id
    expression
    Insurance Policy Id

    Optional literal value or workflow expression.

  • eligibility
    expression
    Eligibility

    Optional literal value or workflow expression.

  • patient_exists
    expression
    Patient Exists

    Optional literal value or workflow expression.

  • niko_patient_id
    expression
    Niko Patient Id

    Optional literal value or workflow expression.

  • create_review_task
    boolean
    Create Review Task

    Optional true-or-false value.

    Default: "true"

Outputs

  • successSuccess
  • pushedPushed
  • statusStatus
  • urlUrl
  • external_idExternal Id
  • 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": [
    "document_id"
  ],
  "properties": {
    "auth_type": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "eligibility": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "patient_exists": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "niko_patient_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "create_review_task": {
      "type": "boolean",
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "insurance_policy_id": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "url": {},
    "error": {},
    "pushed": {},
    "status": {},
    "success": {},
    "external_id": {}
  },
  "additionalProperties": true
}
View all Authorizations actions