INPUT_OBJECT

CreateOrUpdateCallInput

link GraphQL Schema definition

  • input CreateOrUpdateCallInput {
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Specific opportunity line-item discussed on the call, when applicable.
  • opptyProductRelation: CreateOpptyProductRelationInput
  • # Id of the linked account.
  • accountId: ID
  • # Id of the calling user.
  • callerId: ID
  • # Id of the user the call was made with.
  • clientId: ID
  • # Id of the linked contact.
  • contactId: ID
  • # Id of the linked lead or opportunity, or empty when not linked.
  • leadOpptyId: ID
  • # Id of the linked opportunity product line-item.
  • opptyProductRelationId: ID
  • # External phone number called or received, in E.164 format.
  • phoneNumber: String
  • # Id of the linked product.
  • productId: ID
  • # External transcription identifier from the calling provider.
  • transcriptionId: String
  • # Language requested for the transcription as a BCP-47 locale tag (e.g. "en-US").
  • transcriptionLanguage: String
  • # AI-generated summary of the call transcription.
  • transcriptionSummary: String
  • # Id of the call-log record from the calling provider that this call is associated
  • # with.
  • twilioCallLogId: ID
  • # 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: AudioStatus
  • }

link Require by