UpdateCustomerInput
No description
input UpdateCustomerInput {
customerId: Int!
firstName: String
middleName: String
lastName: String
gender: Gender
email: String
phone: String
mobile: String
dateOfBirth: String
mailingList: YesNo
parentId: Int
primaryLanguage: String
attributes: [UserManagementAttributeValueInput!]
}
Fields
UpdateCustomerInput.customerId
● Int!
non-null scalar
UpdateCustomerInput.firstName
● String
scalar
UpdateCustomerInput.middleName
● String
scalar
UpdateCustomerInput.lastName
● String
scalar
UpdateCustomerInput.gender
● Gender
enum
UpdateCustomerInput.email
● String
scalar
UpdateCustomerInput.phone
● String
scalar
UpdateCustomerInput.mobile
● String
scalar
UpdateCustomerInput.dateOfBirth
● String
scalar
UpdateCustomerInput.mailingList
● YesNo
enum
UpdateCustomerInput.parentId
● Int
scalar
The id of the usergroup the customer should be created in.
UpdateCustomerInput.primaryLanguage
● String
scalar
The primary language of the customer.
UpdateCustomerInput.attributes
● [UserManagementAttributeValueInput!]
list input
Customer's custom attribute values. This field is used to set value on attributes for the selected customer. Attributes that are used here (selected by name) must already be defined in Propeller.
Member Of
customerUpdate
mutation