INPUT_OBJECT

CreateAccountInput

link GraphQL Schema definition

  • input CreateAccountInput {
  • clientMutationId: String
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Profile picture or company logo associated with the account.
  • picture: CreateCloudObjectInput
  • # Manual classification grade assigned to the account. Used in segmentation and
  • # reporting.
  • accountClass: AccountClassEnum
  • # Id of the account type assigned to this account.
  • accountTypeId: ID
  • # Street address of the account.
  • address: String
  • # City of the account address.
  • city: String
  • # Free-form notes describing the account.
  • comments: String
  • # Country of the account address.
  • country: String
  • # Id of the currency exchange rate list applied to this account.
  • currencyExchangeRatesListId: ID
  • # Id of the customer type.
  • customerTypeId: ID
  • # Primary email address of the account. Used as default recipient for emails sent
  • # from Coevera.
  • email1: String
  • # Additional email address.
  • email2: String
  • # Additional email address.
  • email3: String
  • # Additional email address.
  • email4: String
  • # Additional email address.
  • email5: String
  • # Website URL of the account. May be auto-filled from the primary email domain
  • # when domain extraction is enabled.
  • homePage: String
  • # Id of the industry classification.
  • industryId: ID
  • # True when the account has been archived. Archived accounts remain readable but
  • # are hidden from active lists and cannot be edited until reactivated.
  • isArchived: Boolean
  • # Name of the entity and its default text representation.
  • name: String!
  • # Id of the account owner.
  • ownerId: ID!
  • # Id of the parent account.
  • parentAccountId: ID
  • # Id of the parent-account relationship type.
  • parentAccountRelationTypeId: ID
  • # Primary phone number of the account. Used as default target for click-to-call.
  • phone1: String
  • # Additional phone number.
  • phone2: String
  • # Additional phone number.
  • phone3: String
  • # Additional phone number.
  • phone4: String
  • # Additional phone number.
  • phone5: String
  • # Id of the profile picture document.
  • pictureId: ID
  • # Free-text parent-account name used when the parent has not been linked to an
  • # actual Account record. Lets integrators note the relationship without creating a
  • # separate parent Account.
  • quickParentAccountName: String
  • # Sharing model applied on top of the owner/unit visibility (e.g. shared with
  • # selected sales units or selected users). The matching sharing_units /
  • # sharing_clients lists control who is granted access.
  • shareMode: ShareModeEnum
  • # State or province of the account address.
  • stateProvince: String
  • # Id of the sales unit.
  • unitId: ID
  • # ZIP or postal code of the account address.
  • zipCode: String
  • customFields: JSONString
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Social network profiles linked to this account (e.g. LinkedIn, Facebook).
  • socialMedia: CreateAccountSocialRelationNoIdBackrefInput
  • # Sales units that have been granted shared access to this account. Editable only
  • # when share_mode allows unit sharing.
  • sharingUnits: [CreateAccountSharingSalesUnitRelationNoAccountBackrefInput!]
  • # Users that have been granted shared access to this account. Editable only when
  • # share_mode allows user sharing.
  • sharingClients: [CreateAccountSharingClientRelationNoAccountBackrefInput!]
  • # Documents linked to this account.
  • documents: [CreateCloudObjectRelationNoBackrefInput!]
  • isUnsubscribed: Boolean
  • # Tag labels applied to this account.
  • tags: [CreateTagRelationNoAccountBackrefInput!]
  • # Saved view profiles this account currently matches.
  • staticProfiles: [CreateProfileRelationNoAccountBackrefInput!]
  • }

link Require by