Communication
| Integration Provider | Meeting | Message | User | Other | 
|---|---|---|---|---|
| Google Meet | ✅ | |||
| LinkedIn Sales Navigator | ✅ | Message History Profile | ||
| Microsoft Teams | ✅ | ✅ | ||
| Slack | Send Message (Channel), Send Message (User DM) | |||
| Zoom | ✅ | 
Don't see the integration provider or resource you want? Let us know and we will build it out ASAP!
Meeting: communication-meeting
communication-meetingA meeting is a virtual video call session.
{
  "title": {
    "title": "Title",
    "type": "string",
    "description": "The title of the meeting.",
  },
  "description": {
    "title": "Description",
    "type": "string",
    "description": "The description of the meeting.",
  },
  "start": {
    "format": "date-time",
    "description": "The date and time that the meeting begins.",
    "title": "Start",
    "type": "string"
  },
  "end": {
    "title": "End Date",
    "type": "string",
    "format": "date-time",
    "description": "The date and time that the meeting ends.",
  },
  "join_url": {
    "title": "Join URL",
    "type": "string",
    "format": "uri",
    "description": "The join URL for the meeting."
  },
  "organizer_display_name": {
    "title": "Organizer Display Name",
    "type": "string"
  },
  "organizer_email": {
    "title": "Organizer Email",
    "type": "string",
    "format": "uri"
  },
  "participants": {
    "title": "Participants",
    "type": "array",
    "items": {
      "type": "object",
      "properties": {
        "participant_display_name": {
          "title": "Participant Display Name",
          "type": "string",
          "description": "The display name of the participant in the meeting."
        },
        "participant_email": {
          "title": "Participant Email",
          "type": "string",
          "format": "email",
          "description": "The email of the participant in the meeting."
        },
      }
    }
  },
  "transcripts": {
    "title": "Transcripts",
    "type": "array",
    "items": {
      "type": "object",
      "properties": {
        "transcript_url": {
          "title": "Transcript URL",
          "type": "string",
          "format": "uri",
          "description": "The transcript URL for the meeting."
        }
      }
    }
  }
}{
  "title": "Endgrate All-Hands",
  "description": "Quarter Recap",
  "start": "2024-01-01 00:00:00",
  "end": "2024-01-02 00:00:00"
}Messages: communication-message
communication-messageMessages are the previous message correspondence within the communication platform.
{
  "messages": {
    "title": "Messages",
    "type": "array",
    "items": {
      "type": "object",
      "properties": {
        "sender_display_name": {
          "title": "Sender Display Name",
          "type": "string",
          "description": "The display name of the sender of the message."
        },
        "sender_email": {
          "title": "Sender Email",
          "type": "string",
          "format": "email",
          "description": "The email of the sender of the message."          
        },
        "text": {
          "title": "Text",
          "description": "The text of the message.",
          "type": "string",
        },
        "timestamp": {
          "title": "Timestamp",
          "type": "string",
          "format": "date-time",
        }
      }
    }
  },
}{
  "messages": [
    {
      "sender_email": "[email protected]",
      "text": "Example message",
      "timestamp": "2024-01-02 00:00:00"
    }
  ]
}User: communication-user
communication-userA user is a user of the communication platform.
{
  "first_name": {
    "title": "First Name",
    "type": "string"
  },
  "last_name": {
    "title": "Last Name",
    "type": "string"
  },
  "display_name": {
    "title": "Display Name",
    "type": "string"
  },
  "email": {
    "title": "Email",
    "type": "string",
    "format": "email",
  },
}{
  "first_name": "Bob",
  "last_name":"Smith",
  "display_name": "bsmith",
  "email": "[email protected]"
}Updated 8 months ago