INPUT_OBJECT

UserPolicyInput

Payload for a user policy

link GraphQL Schema definition

  • input UserPolicyInput {
  • # If true, the policy will be deleted
  • _destroy: Boolean
  • # The group number
  • group_num: String
  • # The date of birth of the policy holder
  • holder_dob: String
  • # The first name of the policy holder
  • holder_first: String
  • # The gender of the policy holder
  • holder_gender: String
  • # The last name of the policy holder
  • holder_last: String
  • # The location of the policy holder
  • holder_location: ClientLocationInput
  • # The middle initial of the policy holder
  • holder_mi: String
  • # The phone number of the policy holder
  • holder_phone: String
  • # The relationship of the policy holder to the client
  • holder_relationship: String
  • # The ID of the policy
  • id: ID
  • # The back of the insurance card
  • insurance_card_back: Upload
  • # The ID of the back of the insurance card
  • insurance_card_back_id: String
  • # The front of the insurance card
  • insurance_card_front: Upload
  • # The ID of the front of the insurance card
  • insurance_card_front_id: String
  • # The insurance plan
  • insurance_plan: ClientInsurancePlanInput
  • # The ID of the insurance plan
  • insurance_plan_id: String
  • # The name of the policy
  • name: String
  • # The policy number
  • num: String
  • # The location of the payer
  • payer_location: ClientLocationInput
  • # The policy-related phone number
  • policy_phone_number: String
  • # The priority type of the policy
  • priority_type: String
  • # Whether the policy holder has the same address as the client
  • same_address_as_client: Boolean
  • # The type of the policy
  • type_string: String
  • # The ID of the user
  • user_id: String
  • # Either ID of related intake flow item which this policy was created for. Usually
  • # it is Insurance Form. Email notification will be triggered if this field is
  • # passed
  • onboarding_item_id: ID
  • }