OBJECT
MediaEntity
link GraphQL Schema definition
- type MediaEntity {
- # 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
- # Appointment this media is attached to. Set when activity_id resolves to an
- # Appointment.
- : AppointmentEntity
- # Task this media is attached to. Set when activity_id resolves to a Task.
- : TaskEntity
- # Call this media belongs to (e.g. a recording or transcription).
- : CallEntity
- # Id of the linked appointment or task, or empty when not linked to an activity.
- : ID
- # Id of the linked call, or empty when not linked.
- : ID
- # Provider-specific metadata about the media (e.g. transcription identifiers,
- # recording parameters).
- : JSONString
- # Free-text description of the media.
- : String
- # Error code reported by the calling/recording provider when processing failed;
- # empty on success.
- : Int
- # Field whose values are strictly defined with an enumeration of values.
- : MediaStatusEnum
- # Field whose values are strictly defined with an enumeration of values.
- : MediaTypeEnum
- # Revision when entity was lastly changed.
- : Int
- # Id of the cloud object holding the audio recording, when available.
- : UUID
- # Id of the cloud object holding the transcription payload, when available.
- : UUID
- # External transcription identifier from the calling provider.
- : String
- # Language requested for the transcription as a BCP-47 locale tag (e.g. "en-US",
- # "de-DE"). Set when the transcription was requested.
- : String
- # AI-generated summary of the transcription content.
- : String
- # Short-lived token for opening the transcription in the calling provider's
- # viewer. Empty when no transcription is available.
- : String!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- : CloudObjectEntity
- : CloudObjectEntity
- }