Skip to content

PrimaryOrganizationInfoInput

Payload for a primary organization

Fields

_destroy · Boolean · If true, the organization will be deleted
external_id · String · The external ID of the organization
id · ID · The ID of the organization
id_number_type · String · The ID number type of the organization
location · OrgLocationInput · The location of the organization
name · String · The graphql_name of the organization
npi · String · The NPI of the organization
other_id · String · The other ID of the organization
other_id_qual · String · The other ID qual of the organization
phone_number · String · The phone number of the organization
primary · Boolean · Whether the organization is primary
tax_id · String · The tax ID of the organization
tax_id_type · String · The tax ID type of the organization

Used By

Definition

"""
Payload for a primary organization
"""
input PrimaryOrganizationInfoInput {
"""
If true, the organization will be deleted
"""
_destroy: Boolean
"""
The external ID of the organization
"""
external_id: String
"""
The ID of the organization
"""
id: ID
"""
The ID number type of the organization
"""
id_number_type: String
"""
The location of the organization
"""
location: OrgLocationInput
"""
The graphql_name of the organization
"""
name: String
"""
The NPI of the organization
"""
npi: String
"""
The other ID of the organization
"""
other_id: String
"""
The other ID qual of the organization
"""
other_id_qual: String
"""
The phone number of the organization
"""
phone_number: String
"""
Whether the organization is primary
"""
primary: Boolean
"""
The tax ID of the organization
"""
tax_id: String
"""
The tax ID type of the organization
"""
tax_id_type: String
}