OBJECT

WebhookMessageTemplate

Description

Webhook Message template.

link GraphQL Schema definition

  • type WebhookMessageTemplate {
  • # The template's unique ID.
  • id: Long!
  • # The name of the template.
  • name: String!
  • # The message template.
  • templateData: String!
  • # The timestamp that this template was created at.
  • createdAt: DateTime
  • # The timestamp that this template was updated at.
  • updatedAt: DateTime
  • # The record type of the message template.
  • recordType: TemplateRecordType!
  • # The message type of message template.
  • msgType: TemplateMessageType!
  • # The document format of message template.
  • docFormat: TemplateDocFormat!
  • # The URL of the document.
  • docUrl: String
  • # The user who created the template.
  • createdBy: String
  • # The user who updated the template.
  • updatedBy: String
  • }

link Require by