OBJECT
CallEntity
link GraphQL Schema definition
- type CallEntity {
- # 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 the call is linked to, when applicable.
- : AccountEntity
- # User who initiated the call.
- : ClientEntity
- # User the call was made with, when the call was an internal user-to-user call.
- : ClientEntity
- # Contact the call is linked to, when applicable.
- : ContactEntity
- # Lead the call is linked to, when the call is associated with a lead.
- : LeadEntity
- # Opportunity the call is linked to, when the call is associated with an
- # opportunity.
- : OpportunityEntity
- # Specific opportunity line-item discussed on the call, when applicable.
- : OpptyProductRelationEntity
- # Product discussed on the call, when applicable.
- : ProductEntity
- # Id of the linked account.
- : ID
- # Id of the calling user.
- : ID!
- # Id of the user the call was made with.
- : ID
- # Id of the linked contact.
- : ID
- # Id of the linked lead or opportunity, or empty when not linked.
- : ID
- # Id of the linked opportunity product line-item.
- : ID
- # External phone number called or received, in E.164 format.
- : String
- # Id of the linked product.
- : ID
- # External transcription identifier from the calling provider.
- : String
- # Language requested for the transcription as a BCP-47 locale tag (e.g. "en-US").
- : String
- # AI-generated summary of the call transcription.
- : String
- # Id of the call-log record from the calling provider that this call is associated
- # with.
- : ID!
- # Id of the cloud object holding the transcription payload, when available.
- : UUID
- # Id of the cloud object holding the call audio recording, when available.
- : UUID
- # External call identifier from the calling provider (e.g. Twilio Call SID).
- : String!
- # This is a small hack to force creation of MediaEntity upon Call
- # creation.
- #
- # This field cannot be actually set. Instead, CallRepository.create method handles
- # media creation,
- #
- # if requested.
- #
- : AudioStatus
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- : CloudObjectEntity
- : TaskEntity
- : CloudObjectEntity
- : MediaEntity
- }