Merge · Schema

EngagementType

# The Engagement Type Object ### Description The `Engagement Type` object is used to represent an interaction activity. A given `Engagement` typically has an `Engagement Type` object represented in the engagement_type field. ### Usage Example TODO

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
remote_id stringnull The third-party API ID of the matching object.
created_at string The datetime that this object was created by Merge.
modified_at string The datetime that this object was modified by Merge.
activity_type object The engagement type's activity type.
name stringnull The engagement type's name.
remote_fields array
View JSON Schema on GitHub

JSON Schema

merge-engagementtype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EngagementType",
  "title": "EngagementType",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "remote_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "The third-party API ID of the matching object."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was created by Merge."
    },
    "modified_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was modified by Merge."
    },
    "activity_type": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/ActivityTypeEnum"
        },
        {
          "type": "null"
        }
      ],
      "description": "The engagement type's activity type."
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The engagement type's name."
    },
    "remote_fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RemoteField"
      }
    }
  },
  "description": "# The Engagement Type Object\n### Description\nThe `Engagement Type` object is used to represent an interaction activity. A given `Engagement` typically has an `Engagement Type` object represented in the engagement_type field.\n### Usage Example\nTODO"
}