OBJECT
EmailSequenceEnrolledEntity
link GraphQL Schema definition
- type EmailSequenceEnrolledEntity {
- # 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 that was enrolled, when the trigger entity is an Account; otherwise
- # empty.
- : AccountEntity
- # User who triggered the enrolment, or empty for runs triggered by automation.
- : ClientEntity
- # Application context the enrolment was triggered in.
- : ApplicationEntity
- # Contact that was enrolled, when the trigger entity is a Contact; otherwise
- # empty.
- : ContactEntity
- # Activity log run that produced this enrolment.
- : EmailSequenceActivityLogEntity
- # Email sequence this enrolment belongs to.
- : EmailSequenceEntity
- # Lead that was enrolled, when the trigger entity is a Lead; otherwise empty.
- : LeadEntity
- # Opportunity that was enrolled, when the trigger entity is an Opportunity;
- # otherwise empty.
- : OpportunityEntity
- # Project that was enrolled, when the trigger entity is a Project; otherwise
- # empty.
- : ProjectEntity
- # Id of the enrolled account.
- : ID
- # Id of the actor.
- : ID
- # Id of the application.
- : ID!
- # Id of the enrolled contact.
- : ID
- # Id of the activity log.
- : ID!
- # Id of the email sequence.
- : ID!
- # Why the enrolment ended (e.g. Reply, Unsubscribe, Bounce, Manual, Completed).
- : EmailSequenceEndReasonEnum
- # Timestamp when the enrolment ended (completed or unenrolled). Empty while the
- # enrolment is active.
- : DateTime
- # Id of the enrolled entity (matches whichever of
- # account/contact/lead/oppty/project is set). Read-only.
- : ID!
- # Type of the enrolled entity (e.g. Account, Contact, Lead). Read-only.
- : BaseEntityTypeEnum!
- # True when this enrolment is excluded from sequence statistics (e.g. after a
- # stats reset).
- : Boolean
- # Id of the enrolled lead.
- : ID
- # Id of the enrolled opportunity.
- : ID
- # Id of the enrolled project.
- : ID
- # Timestamp when the enrolment started.
- : DateTime!
- # Number of steps the enrolment has reached. Read-only.
- : Int!
- # Display name of the enrolled record, formatted according to the calling user's
- # preferred name format. Empty when the underlying record has been deleted.
- : String
- # Email address used for delivery of this enrolment.
- : String
- # Zero-based index of the next step the enrolment will execute (i.e. one past the
- # highest step_index recorded in EmailSequenceEnrolledStatus). Empty before the
- # first step runs.
- : Int
- # Status of the enrolment's most recent sequence run: NoActivity, Running,
- # Success, Warning, or Error.
- : ProcessStatusEnum
- # Name of the enrolled entity (Account, Contact, Lead, Opportunity, or Project),
- # derived from entity_type.
- : EntityNameEnum!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }