Skip to content

NotificationContact

A notification contact

Fields

client_portal_access · Boolean! · required · Has personal client portal access
contact_type · String · contact type
copy_notifications · Boolean! · required · should a notifications of user be copied to contact
email · String · contact email
emergency · Boolean! · required · is emergency contact
first_name · String · first name of a contact
full_legal_name_with_preferred · String · full legal name with preferred
full_name · String · full name of a contact
id · ID! · required · The unique identifier of the contact
last_name · String · last name of a contact
linked_client · User · Linked user to notification contact
linked_client_id · String · ID of the linked user account
phone_number · String · contact phone number
relationship · String · relationship between contact and user
updated_at · ISO8601DateTime! · required · Date notification contact was last updated
user · User · Owner of this notification contact
user_id · ID · user id

Used By

Definition

"""
A notification contact
"""
type NotificationContact {
"""
Has personal client portal access
"""
client_portal_access: Boolean!
"""
Client portal settings
"""
client_portal_setting: ClientPortalSetting
"""
contact type
"""
contact_type: String
"""
should a notifications of user be copied to contact
"""
copy_notifications: Boolean!
"""
contact email
"""
email: String
"""
is emergency contact
"""
emergency: Boolean!
"""
first name of a contact
"""
first_name: String
"""
full legal name with preferred
"""
full_legal_name_with_preferred: String
"""
full name of a contact
"""
full_name: String
"""
The unique identifier of the contact
"""
id: ID!
"""
last name of a contact
"""
last_name: String
"""
Linked user to notification contact
"""
linked_client: User
"""
ID of the linked user account
"""
linked_client_id: String
"""
contact phone number
"""
phone_number: String
"""
relationship between contact and user
"""
relationship: String
"""
Date notification contact was last updated
"""
updated_at: ISO8601DateTime!
"""
Owner of this notification contact
"""
user: User
"""
user id
"""
user_id: ID
}