INPUT_OBJECT
UpdateEmailTemplateInput
link GraphQL Schema definition
- input UpdateEmailTemplateInput {
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # HTML body of the template. May use merge-field placeholders that are filled with
- # record values when the template is composed.
- : String
- # Id of the folder.
- : ID
- # Name of the entity and its default text representation.
- : String
- # Id of the template owner.
- : ID
- # List of integers.
- : [Int!]
- # Sharing model for the template (e.g. shared with selected sales units, selected
- # users, or open for editing by all).
- : ShareModeEnum
- # When true, the template's public sharing URL is active and accessible. Setting
- # to false invalidates outstanding sharing URLs.
- : Boolean
- # Public sharing-link configuration: resolved URL plus optional personalisation
- # context (entity type, entity id) used to pre-fill merge fields. Empty when no
- # sharing link is configured.
- : JSONString
- # Subject line of emails composed from this template. Supports merge-field
- # placeholders.
- : String
- # Template format (e.g. HtmlTemplate, PlainTextTemplate).
- : EmailTemplateTypeEnum
- # Revision when entity was lastly changed.
- : Int
- # Sales units granted shared access to this template (custom share mode).
- : [CreateEmailTemplateSharingSalesUnitRelationNoEmailTemplateBackrefInput!]
- # Users granted shared access to this template (custom share mode).
- : [CreateEmailTemplateSharingClientRelationNoEmailTemplateBackrefInput!]
- # Files attached to the template (used as default attachments).
- : [CreateCloudObjectRelationNoBackrefInput!]
- }