OBJECT
AccountEntity
link GraphQL Schema definition
- type AccountEntity {
- # Arguments
- # apiNames: Api names of custom fields to retrieve. All are
- # returned if not set.
- (: [String!]): JSONString!
- # Deferred property. Will return data only if called via get_by_id. Otherwise null
- # or empty array is used.
- : Int
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Account type that classifies this account. Account types are configurable per
- # team space and drive which form, fields and pipelines apply.
- : AccountTypeEntity
- # Currency exchange rate list used to convert monetary fields linked to this
- # account. Empty to inherit the team space default.
- : CurrencyExchangeRatesListEntity
- # Customer category (e.g. Lead, Prospect, Customer). Configurable per team space.
- : DataEntity
- # Industry the account operates in. Configurable per team space.
- : DataEntity
- # Sales user who owns this account.
- : ClientEntity
- # Parent account in a corporate hierarchy. Empty for top-level accounts.
- : AccountEntity
- # Type of relationship to the parent account (e.g. subsidiary, branch). Required
- # when parent_account is set.
- : ParentAccountRelationTypeEntity
- # Profile picture or company logo associated with the account.
- : CloudObjectEntity
- # Sales unit this account is assigned to. Determines which team members can see
- # the record under unit-based sharing.
- : SalesUnitEntity
- # Manual classification grade assigned to the account. Used in segmentation and
- # reporting.
- : AccountClassEnum
- # Id of the account type assigned to this account.
- : ID
- # Street address of the account.
- : String
- # City of the account address.
- : String
- # Free-form notes describing the account.
- : String
- # Country of the account address.
- : String
- # Id of the currency exchange rate list applied to this account.
- : ID
- # Id of the customer type.
- : ID
- # Primary email address of the account. Used as default recipient for emails sent
- # from Coevera.
- : String
- # Additional email address.
- : String
- # Additional email address.
- : String
- # Additional email address.
- : String
- # Additional email address.
- : String
- # Coarser bucket of health_status used for grouping and reporting. Read-only.
- : ID
- # Computed entity-health state (e.g. healthy, at-risk). Read-only; recalculated by
- # Coevera when relevant fields change.
- : Int
- # Website URL of the account. May be auto-filled from the primary email domain
- # when domain extraction is enabled.
- : String
- # Id of the industry classification.
- : ID
- # True when the account has been archived. Archived accounts remain readable but
- # are hidden from active lists and cannot be edited until reactivated.
- : Boolean
- # Name of the entity and its default text representation.
- : String!
- # Id of the account owner.
- : ID!
- # Id of the parent account.
- : ID
- # Id of the parent-account relationship type.
- : ID
- # Primary phone number of the account. Used as default target for click-to-call.
- : String
- # Additional phone number.
- : String
- # Additional phone number.
- : String
- # Additional phone number.
- : String
- # Additional phone number.
- : String
- # Id of the profile picture document.
- : 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.
- : 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.
- : ShareModeEnum
- # State or province of the account address.
- : String
- # Id of the sales unit.
- : ID
- # ZIP or postal code of the account address.
- : String
- # Revision when entity was lastly changed.
- : Int
- # Display version of the account name, used in lists and references.
- : String!
- # Number of email sequences this record is currently actively enrolled in
- # (soft-deleted or ended enrollments are not counted).
- : Int!
- : AccountSocialRelationEntity
- # Sales units that have been granted shared access to this account. Editable only
- # when share_mode allows unit sharing.
- #
- # Arguments
- # filter: Filter SalesUnit relations by target SalesUnit
- # attributes.
- # filterEdge: Filter AccountSharingSalesUnitRelation relations by
- # edge (relation) AccountSharingSalesUnitRelation attributes.
- # orderBy: Order SalesUnit relations by target SalesUnit
- # attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : SalesUnitFilterInput,
- : AccountSharingSalesUnitRelationFilterInput,
- : [SalesUnitOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): AccountSharingSalesUnitRelationEntityConnection
- # Users that have been granted shared access to this account. Editable only when
- # share_mode allows user sharing.
- #
- # Arguments
- # filter: Filter Client relations by target Client attributes.
- # filterEdge: Filter AccountSharingClientRelation relations by
- # edge (relation) AccountSharingClientRelation attributes.
- # orderBy: Order Client relations by target Client attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : ClientFilterInput,
- : AccountSharingClientRelationFilterInput,
- : [ClientOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): AccountSharingClientRelationEntityConnection
- # Documents linked to this account.
- #
- # Arguments
- # filter: Filter CloudObject relations by target CloudObject
- # attributes.
- # filterEdge: Filter CloudObjectRelation relations by edge
- # (relation) CloudObjectRelation attributes.
- # orderBy: Order CloudObject relations by target CloudObject
- # attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : CloudObjectFilterInput,
- : CloudObjectRelationFilterInput,
- : [CloudObjectOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): CloudObjectRelationEntityConnection
- # True when the current authenticated user has marked this account as favorite.
- # Per-user.
- : Boolean!
- # Deferred property. Will return data only if called via get_by_id. Otherwise null
- # or empty array is used.
- : [UUID!]!
- # If account has any unsubscribed email.
- : Boolean
- # Tag labels applied to this account.
- #
- # Arguments
- # filter: Filter Tag relations by target Tag attributes.
- # filterEdge: Filter TagRelation relations by edge (relation)
- # TagRelation attributes.
- # orderBy: Order Tag relations by target Tag attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : TagFilterInput,
- : TagRelationFilterInput,
- : [TagOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): TagRelationEntityConnection
- # Saved view profiles this account currently matches.
- #
- # Arguments
- # filter: Filter Profile relations by target Profile attributes.
- # filterEdge: Filter ProfileRelation relations by edge (relation)
- # ProfileRelation attributes.
- # orderBy: Order Profile relations by target Profile attributes.
- # includeDeleted: Returns deleted target records as well. Default
- # is true.
- # before: Cursor until which to take entities to result set.
- # after: Cursor after which to start taking entities to result
- # set.
- # first: Number of entities to return from beginning of the
- # result set.
- # last: Return only the "last" number of entities from result
- # set.
- (
- : ProfileFilterInput,
- : ProfileRelationFilterInput,
- : [ProfileOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ProfileRelationEntityConnection
- # Composite entity-health summary, combining current and previous state with
- # last-calculation metadata. Read-only; computed by Coevera.
- : EntityHealthResult
- # Timestamp of the most recent modification made by an end user (excluding system
- # changes). Read-only; computed by Coevera.
- : DateTime
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- # Arguments
- # entityType: [Not documented]
- (: EntityNameEnum!): CompactViewDrilldownModel!
- # Arguments
- # ids: [Not documented]
- (: [UUID!]!): [DashboardChartData!]
- # Arguments
- # id: [Not documented]
- # seriesIndex: [Not documented]
- # itemIndex: [Not documented]
- (: UUID!, : Int, : Int): CompactViewDrilldownModel!
- # Arguments
- # ids: Null to load all fields defined on InterfacePreview entity
- # first: [Not documented]
- (: [UUID!], : Int): [InterfaceFieldData]!
- : ApprovalEntity
- }
link Require by
- AccountAutoPrefillnull
- AccountDataExRelationEntitynull
- AccountEntitynull
- AccountEntityEdgeA Relay edge containing a `AccountEntity` and its cursor.
- AccountKPIEntitynull
- AccountProductPricingEntitynull
- AccountRelationEntitynull
- AccountRepositorynull
- AccountSharingClientRelationEntitynull
- AccountSharingSalesUnitRelationEntitynull
- ActivityRelationEntitynull
- ApprovalEntitynull
- ArchiveAccountPayloadnull
- CallEntitynull
- ChangeOwnershipAccountPayloadnull
- ClientFavoriteEntitynull
- CloudObjectRelationEntitynull
- ContactAccountRelationEntitynull
- ContactEntitynull
- ConvertAccountPayloadnull
- CopyAccountPayloadnull
- CreateAccountPayloadnull
- CustomEntityRelationDataEntitynull
- DashboardListChartDataEntitynull
- DeleteAccountPayloadnull
- EmailEntitynull
- EmailSequenceEnrolledEntitynull
- GhostContactAccountRelationEntitynull
- LeadEntitynull
- LeadOpptyAccountRelationEntitynull
- ManageSharingAccountPayloadnull
- MergeAccountPayloadnull
- MessageRelationEntitynull
- NoteEntitynull
- OnlineFormEntitynull
- OnlineFormRelationEntitynull
- OnlineFormTypeEmailRelationEntitynull
- OpportunityEntitynull
- ProfileRelationEntitynull
- ProjectEntitynull
- QuoteAccountRelationEntitynull
- QuoteEntitynull
- ReactivateAccountPayloadnull
- RestoreAccountPayloadnull
- TagRelationEntitynull
- TextMessageConversationEntitynull
- TextMessageConversationRelationsEntitynull
- UpdateAccountPayloadnull