Add-BillingNarrativeType
  • 1 Minute to read
  • Dark
    Light
  • PDF

Add-BillingNarrativeType

  • Dark
    Light
  • PDF

Article summary

Summary

Creates a new billing narrative type.

Add-BillingNarrativeType
    -Entry

Returns a billing narrative type object.

Parameters

Parameter

Type

Required?

Notes

Entry

Billing Narrative Type Object

Yes


Examples

Create a new billing narrative type

# Create a billing narrative type object
$billingNarrativeType = @{
    Text = "Process and load client data into review database."
}

# Pass the billing narartive type object to the Add-BillingNarrativeType command to create the entry
$createdBillingNarrativeType = Add-BillingNarrativeType -Entry $billingNarrativeType

# Use Write-Output to log the execution results
Write-Output "Billing narrative type $($createdBillingNarrativeType.BillingNarrativeTypeId) ($($createdBillingNarrativeType.Text)) was created"

Results of executing the script:

Billing narrative type 11 (Process and load client data into review database.) was created