createOrganizationMembershipInput
Autogenerated input type of createOrganizationMembership
Fields
clientMutationId
· String
· DO NOT USE deprecated
DO NOT USEorganization_id
· ID
· Required: The ID of the organization send_invite_email
· Boolean
· When true, an invite email will be sent to the newly created organization member permission_template_id
· ID
· Selected permission template Used By
Definition
"""Autogenerated input type of createOrganizationMembership"""input createOrganizationMembershipInput { """ DO NOT USE """ clientMutationId: String @deprecated(reason: "DO NOT USE") email: String first_name: String last_name: String
""" Options are ["Standard", "Support"] """ org_role: String
""" Required: The ID of the organization """ organization_id: ID
""" Can optionally be passed in along with last_name, first_name, and email. When passed in, the newly created user will have this password """ password: String professions: [ProfessionsInput]
""" When true, an invite email will be sent to the newly created organization member """ send_invite_email: Boolean = true specialties: [SpecialtiesInput]
""" Organization’s member timezone """ timezone: String
""" Lets you add extra metadata about the organization membership. Not used in Healthie UI """ title: String
""" Selected permission template """ permission_template_id: ID}