Skip to documentation
NikoHealth integration

Get Invoice Detail

Perform Get Invoice Detail through NikoHealth.

View as Markdown
nikohealth_get_order_hcpcs
readnikohealth

Inputs

  • claim_id
    textrequired
    Claim Id

    Required text value.

  • include_items
    boolean
    Include Items

    Optional true-or-false value.

    Default: false

  • skip_if_empty
    boolean
    Skip If Empty

    Optional true-or-false value.

    Default: false

Outputs

  • successSuccess
  • order_idOrder Id
  • patient_idPatient Id
  • payer_idPayer Id
  • patient_insurance_idPatient Insurance Id
  • hcpcs_codesHcpcs Codes
  • hcpcs_itemsHcpcs Items
  • claim_diagnosis_codesClaim Diagnosis Codes
  • itemsItems
  • countCount
  • payer_namePayer Name
  • billing_providerBilling Provider
  • billing_provider_nameBilling Provider Name
  • billing_provider_npiBilling Provider Npi
  • has_prior_authorizationHas Prior Authorization
  • source_typeSource Type
  • prior_authorizationsPrior Authorizations
  • invoiceInvoice
  • invoice_idInvoice Id
  • skippedSkipped
  • reasonReason
  • errorError

Output schema completeness: best_effort_declared

Safety

External effect
read
Confirmation recommended
No
Retry safe
Yes
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "required": [
    "claim_id"
  ],
  "properties": {
    "claim_id": {
      "type": "string",
      "description": "Required text value.",
      "x-workflow-field-type": "text"
    },
    "include_items": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    },
    "skip_if_empty": {
      "type": "boolean",
      "default": false,
      "description": "Optional true-or-false value.",
      "x-workflow-field-type": "boolean"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "count": {},
    "error": {},
    "items": {},
    "reason": {},
    "invoice": {},
    "skipped": {},
    "success": {},
    "order_id": {},
    "payer_id": {},
    "invoice_id": {},
    "patient_id": {},
    "payer_name": {},
    "hcpcs_codes": {},
    "hcpcs_items": {},
    "source_type": {},
    "billing_provider": {},
    "billing_provider_npi": {},
    "patient_insurance_id": {},
    "prior_authorizations": {},
    "billing_provider_name": {},
    "claim_diagnosis_codes": {},
    "has_prior_authorization": {}
  },
  "additionalProperties": true
}
View all NikoHealth actions