INPUT_OBJECT
CreateContactMutationInput
The input object that defines the fields for the createContact mutation.
link GraphQL Schema definition
- input CreateContactMutationInput {
- # The type of entity that owns this contact.
- ContactableType! :
- # The ID of the entity that owns this contact.
- Int64Bit! :
- # A descriptive name.
- String! :
- # The role of the contact, e.g. "CEO" or "Network Engineer".
- String :
- # An email address.
- EmailAddress :
- # Phone numbers.
- CreatePhoneNumberMutationInput] : [
- # A list of MessageCategory IDs to apply to this contact. If this property is
- # excluded, then the contact will inherit the default message categories, which is
- # the typical behavior. You should only include this property if you want to
- # override the default behavior.
- Int64Bit] : [
- # A list of MessageCategory IDs to apply to this contact. If this property is
- # excluded, then the contact will inherit the default message categories, which is
- # the typical behavior. You should only include this property if you want to
- # override the default behavior.
- Int64Bit] : [
- # Make this the new primary contact.
- Boolean :
- # A supported language.
- Language :
- # A username, used for authentication.
- String :
- # A password.
- String :
- # Whether or not marketing messages accepted.
- Boolean :
- # Data to insert into custom fields.
- CustomFieldDataMutationInput] : [
- # If IDs of `CustomField` objects that are associated with this entity are
- # provided here, they will be unset and removed. You cannot unset data where the
- # `CustomField` property `required` is set to `true`.
- Int64Bit] : [
- # A note about this entity.
- NoteMutationInput :
- }