freshworks · Schema

ReplyCreate

Properties

Name Type Description
body string HTML content of the reply.
cc_emails array Email addresses to CC.
bcc_emails array Email addresses to BCC.
View JSON Schema on GitHub

JSON Schema

freshworks-replycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplyCreate",
  "title": "ReplyCreate",
  "type": "object",
  "required": [
    "body"
  ],
  "properties": {
    "body": {
      "type": "string",
      "description": "HTML content of the reply."
    },
    "cc_emails": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "email"
      },
      "description": "Email addresses to CC."
    },
    "bcc_emails": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "email"
      },
      "description": "Email addresses to BCC."
    }
  }
}