Owners Mutation
Mutation enables to create or update owner in EverReal
Mutation Types
type Mutation {
upsertOwner(owner:OwnerInput!)
deleteOwner(externalId: String!)
}Schema Definition
input OwnerInput {
meta: MetaInformation!
externalOwnerId: String! #externalId by which the owner is identified
firstName: String!
lastName: String!
companyName: String
email: String!
phoneNo: String
address: PersonalAddress
bankDepositInformation: BankDepositInformation
bankInformation: BankIformation
customFieldValues: [CustomFieldValueInput]
}
input PersonalAddress {
streetName: String
streetNumber: String
zipCode: String
city: String
country: String
}
input BankDepositInformation {
iban: String
bic: String
bankName: String
accountHolderName: String
}
input BankIformation {
bankName: String
bankAddress: String
bic: String
iban: String
}
input MetaInformation {
source: String! # source should be the integration source, so logo is visible in everreal
}Last updated