RegisterContactInput
No description
input RegisterContactInput {
firstName: String
middleName: String
lastName: String
gender: Gender
email: String
homepage: String
phone: String
mobile: String
dateOfBirth: String
mailingList: YesNo
primaryLanguage: String
debtorId: String
parentId: Int!
password: String
}
Fields
RegisterContactInput.firstName
● String
scalar
RegisterContactInput.middleName
● String
scalar
RegisterContactInput.lastName
● String
scalar
RegisterContactInput.gender
● Gender
enum
RegisterContactInput.email
● String
scalar
RegisterContactInput.homepage
● String
scalar
RegisterContactInput.phone
● String
scalar
RegisterContactInput.mobile
● String
scalar
RegisterContactInput.dateOfBirth
● String
scalar
RegisterContactInput.mailingList
● YesNo
enum
RegisterContactInput.primaryLanguage
● String
scalar
The primary language of the contact.
RegisterContactInput.debtorId
● String
scalar
The debtor id of the contact. Deprecated in favor of company debtorId
RegisterContactInput.parentId
● Int!
non-null scalar
The id of the company the contact should be created in.
RegisterContactInput.password
● String
scalar
Optionally create a prefilled password. When omitted the contact can set a new password using password reset(link)
Member Of
contactRegister
mutation