Skip to content

orgDataExportInput

Autogenerated input type of orgDataExport

Fields

deprecated DO NOT USE
ticket · String! · required · Unique identifier for the export job
reviewer_id · ID! · required · Healthie Reviewer ID assigned to the export task
export_provider_id · ID! · required · Provider ID whose data is being exported
parent_org_provider_id · ID · Provider ID of the approving member of the parent organization
batch_size · Int · Number of rows per batch for the export process
export_type · OrgDataExport! · required · The type of export (e.g., "charting_notes", "documents")

Used By

Definition

"""
Autogenerated input type of orgDataExport
"""
input orgDataExportInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
Unique identifier for the export job
"""
ticket: String!
"""
Healthie Reviewer ID assigned to the export task
"""
reviewer_id: ID!
"""
Provider ID whose data is being exported
"""
export_provider_id: ID!
"""
Provider ID of the approving member of the parent organization
"""
parent_org_provider_id: ID
"""
Number of rows per batch for the export process
"""
batch_size: Int = 50
"""
The type of export (e.g., "charting_notes", "documents")
"""
export_type: OrgDataExport!
}