OBJECT

NotificationContact

A notification contact

link GraphQL Schema definition

  • 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
  • # 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: String!
  • # Owner of this notification contact
  • user: User
  • # user id
  • user_id: ID
  • }