Grain

Grain é uma plataforma moderna para capturar, armazenar e compartilhar gravações de reuniões, transcrições, highlights e resumos com IA. O Grain permite que as equipes transformem conversas em insights acionáveis e mantenham todos alinhados sobre os momentos-chave das reuniões.

Com o Grain, você pode:

  • Acessar gravações e transcrições pesquisáveis: Encontrar e revisar cada reunião por palavra-chave, participante ou tópico.
  • Compartilhar highlights e clips: Capturar momentos importantes e compartilhar highlights curtos de vídeo/áudio com a equipe ou nos fluxos de trabalho.
  • Obter resumos gerados por IA: Produzir automaticamente resumos de reunião, itens de ação e insights-chave usando a IA avançada do Grain.
  • Organizar reuniões por equipe ou tipo: Marcar e categorizar gravações para acesso fácil e relatórios.

A integração Grain do Zoen capacita seus agentes a:

  • Listar, pesquisar e recuperar gravações de reuniões e detalhes com filtros flexíveis (datetime, participante, equipe, etc.).
  • Acessar resumos com IA, participantes, highlights e outros metadados de reuniões para alimentar automações ou análises.
  • Disparar fluxos de trabalho sempre que novas reuniões forem processadas, resumos forem gerados ou highlights forem criados via webhooks do Grain.
  • Conectar facilmente dados do Grain a outras ferramentas ou notificar colegas no momento em que algo importante acontece em uma reunião.

Seja para automatizar ações de follow-up, manter registros de conversas importantes ou expor insights na sua organização, Grain e Zoen facilitam conectar inteligência de reuniões aos seus fluxos de trabalho.

Usage Instructions

Integrate Grain into your workflow. Access meeting recordings, transcripts, highlights, and AI-generated summaries. Can also trigger workflows based on Grain webhook events.

Actions

grain_list_recordings

List recordings from Grain with optional filters and pagination

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal Access Token)
cursorstringNoPagination cursor for next page (returned from previous response)
beforeDatetimestringNoOnly recordings before this ISO8601 timestamp (e.g., "2024-01-15T00:00:00Z")
afterDatetimestringNoOnly recordings after this ISO8601 timestamp (e.g., "2024-01-01T00:00:00Z")
participantScopestringNoFilter: "internal" or "external"
titleSearchstringNoSearch term to filter by recording title (e.g., "weekly standup")
teamIdstringNoFilter by team UUID (e.g., "a1b2c3d4-e5f6-7890-abcd-ef1234567890")
meetingTypeIdstringNoFilter by meeting type UUID (e.g., "a1b2c3d4-e5f6-7890-abcd-ef1234567890")
includeHighlightsbooleanNoInclude highlights/clips in response
includeParticipantsbooleanNoInclude participant list in response
includeAiSummarybooleanNoInclude AI-generated summary
includeAiActionItemsbooleanNoInclude AI-detected action items

Output

ParameterTypeDescription
recordingsarrayArray of recording objects
idstringRecording UUID
titlestringRecording title
start_datetimestringISO8601 start timestamp
end_datetimestringISO8601 end timestamp
duration_msnumberDuration in milliseconds
media_typestringaudio, transcript, or video
sourcestringRecording source
urlstringURL to view in Grain
thumbnail_urlstringThumbnail URL
tagsarrayArray of tags
teamsarrayTeams the recording belongs to
meeting_typeobjectMeeting type info
cursorstringCursor for next page (null if no more)

grain_get_recording

Get details of a single recording by ID

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal Access Token)
recordingIdstringYesThe recording UUID (e.g., "a1b2c3d4-e5f6-7890-abcd-ef1234567890")
includeHighlightsbooleanNoInclude highlights/clips
includeParticipantsbooleanNoInclude participant list
includeAiSummarybooleanNoInclude AI summary
includeAiActionItemsbooleanNoInclude AI-detected action items
includeCalendarEventbooleanNoInclude calendar event data
includeHubspotbooleanNoInclude HubSpot associations

Output

ParameterTypeDescription
idstringRecording UUID
titlestringRecording title
start_datetimestringISO8601 start timestamp
end_datetimestringISO8601 end timestamp
duration_msnumberDuration in milliseconds
media_typestringaudio, transcript, or video
sourcestringRecording source (zoom, meet, teams, etc.)
urlstringURL to view in Grain
thumbnail_urlstringThumbnail image URL
tagsarrayArray of tag strings
teamsarrayTeams the recording belongs to
meeting_typeobjectMeeting type info (id, name, scope)
highlightsarrayHighlights (if included)
participantsarrayParticipants (if included)
ai_summaryobjectAI summary text (if included)
ai_action_itemsarrayAI-detected action items with status, text, and assignee (if included)
calendar_eventobjectCalendar event data (if included)
hubspotobjectHubSpot associations (if included)

grain_get_transcript

Get the full transcript of a recording

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal Access Token)
recordingIdstringYesThe recording UUID (e.g., "a1b2c3d4-e5f6-7890-abcd-ef1234567890")

Output

ParameterTypeDescription
transcriptarrayArray of transcript sections
participant_idstringParticipant UUID (nullable)
speakerstringSpeaker name
startnumberStart timestamp in ms
endnumberEnd timestamp in ms
textstringTranscript text

grain_list_teams

List all teams in the workspace

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal Access Token)

Output

ParameterTypeDescription
teamsarrayArray of team objects
idstringTeam UUID
namestringTeam name

grain_list_meeting_types

List all meeting types in the workspace

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal Access Token)

Output

ParameterTypeDescription
meeting_typesarrayArray of meeting type objects
idstringMeeting type UUID
namestringMeeting type name
scopestringinternal or external

grain_create_hook

Create a webhook for a specific Grain event type (v2 API)

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal or Workspace Access Token)
hookUrlstringYesWebhook endpoint URL. Grain performs a reachability test on creation — the endpoint must respond 2xx.
hookTypestringYesEvent type the hook subscribes to. One of: recording_added, recording_updated, recording_deleted, highlight_added, highlight_updated, highlight_deleted, story_added, story_updated, story_deleted, upload_status
includejsonNoOptional include object controlling payload richness. For recording hooks: {"participants": true, "highlights": true, "ai_summary": true}. For highlight hooks: {"transcript": true, "speakers": true}.

Output

ParameterTypeDescription
idstringHook UUID
enabledbooleanWhether hook is active
hook_urlstringThe webhook URL
hook_typestringEvent type the hook subscribes to
includejsonInclude object the hook was created with
inserted_atstringISO8601 creation timestamp

grain_list_hooks

List webhooks for the account (v2 API)

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal or Workspace Access Token)
hookTypestringNoOnly return hooks with this event type. One of: recording_added, recording_updated, recording_deleted, highlight_added, highlight_updated, highlight_deleted, story_added, story_updated, story_deleted, upload_status
statestringNoOnly return hooks that are "enabled" or "disabled"

Output

ParameterTypeDescription
hooksarrayArray of hook objects
idstringHook UUID
enabledbooleanWhether hook is active
hook_urlstringWebhook URL
hook_typestringEvent type the hook subscribes to
includeobjectInclude object the hook was created with
inserted_atstringCreation timestamp

grain_delete_hook

Delete a webhook by ID (v2 API)

Input

ParameterTypeRequiredDescription
apiKeystringYesGrain API key (Personal or Workspace Access Token)
hookIdstringYesThe hook UUID to delete (e.g., "a1b2c3d4-e5f6-7890-abcd-ef1234567890")

Output

ParameterTypeDescription
successbooleanTrue when webhook was successfully deleted

Triggers

A Trigger is a block that starts a workflow when an event happens in this service.

Grain All Events

Trigger on every Grain event (recordings, highlights, stories, uploads)

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type (e.g., recording_added)
user_idstringUser UUID who triggered the event
dataobjectEvent data object (recording, highlight, etc.)

Grain Highlight Added

Trigger when a new highlight/clip is created in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type
user_idstringUser UUID who triggered the event
dataobjectdata output from the tool
idstringHighlight UUID
recording_idstringParent recording UUID
textstringHighlight title/description
transcriptstringTranscript text of the clip
speakersarrayArray of speaker names
timestampnumberStart timestamp in ms
durationnumberDuration in ms
tagsarrayArray of tag strings
urlstringURL to view in Grain
thumbnail_urlstringThumbnail URL
created_datetimestringISO8601 creation timestamp

Grain Highlight Deleted

Trigger when a highlight/clip is deleted in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type (e.g., recording_added)
user_idstringUser UUID who triggered the event
dataobjectEvent data object (recording, highlight, etc.)

Grain Highlight Updated

Trigger when a highlight/clip is updated in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type
user_idstringUser UUID who triggered the event
dataobjectdata output from the tool
idstringHighlight UUID
recording_idstringParent recording UUID
textstringHighlight title/description
transcriptstringTranscript text of the clip
speakersarrayArray of speaker names
timestampnumberStart timestamp in ms
durationnumberDuration in ms
tagsarrayArray of tag strings
urlstringURL to view in Grain
thumbnail_urlstringThumbnail URL
created_datetimestringISO8601 creation timestamp

Grain Recording Added

Trigger when a new recording is added in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type
user_idstringUser UUID who triggered the event
dataobjectdata output from the tool
idstringRecording UUID
titlestringRecording title
start_datetimestringISO8601 start timestamp
end_datetimestringISO8601 end timestamp
duration_msnumberDuration in milliseconds
media_typestringaudio, transcript, or video
sourcestringRecording source (zoom, meet, local_capture, etc.)
urlstringURL to view in Grain
thumbnail_urlstringThumbnail URL (nullable)
tagsarrayArray of tag strings
teamsarrayArray of team objects
meeting_typeobjectMeeting type info with id, name, scope (nullable)

Grain Recording Deleted

Trigger when a recording is deleted in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type (e.g., recording_added)
user_idstringUser UUID who triggered the event
dataobjectEvent data object (recording, highlight, etc.)

Grain Recording Updated

Trigger when a recording is updated in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type
user_idstringUser UUID who triggered the event
dataobjectdata output from the tool
idstringRecording UUID
titlestringRecording title
start_datetimestringISO8601 start timestamp
end_datetimestringISO8601 end timestamp
duration_msnumberDuration in milliseconds
media_typestringaudio, transcript, or video
sourcestringRecording source (zoom, meet, local_capture, etc.)
urlstringURL to view in Grain
thumbnail_urlstringThumbnail URL (nullable)
tagsarrayArray of tag strings
teamsarrayArray of team objects
meeting_typeobjectMeeting type info with id, name, scope (nullable)

Grain Story Added

Trigger when a new story is created in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type
user_idstringUser UUID who triggered the event
dataobjectdata output from the tool
idstringStory UUID
titlestringStory title
urlstringURL to view in Grain
created_datetimestringISO8601 creation timestamp

Grain Story Deleted

Trigger when a story is deleted in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type (e.g., recording_added)
user_idstringUser UUID who triggered the event
dataobjectEvent data object (recording, highlight, etc.)

Grain Story Updated

Trigger when a story is updated in Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type
user_idstringUser UUID who triggered the event
dataobjectdata output from the tool
idstringStory UUID
titlestringStory title
urlstringURL to view in Grain
created_datetimestringISO8601 creation timestamp

Grain Upload Status

Trigger on progress updates for recordings uploaded to Grain

Configuration

ParameterTypeRequiredDescription
apiKeystringYesRequired to create the webhook in Grain.

Output

ParameterTypeDescription
typestringEvent type (e.g., recording_added)
user_idstringUser UUID who triggered the event
dataobjectEvent data object (recording, highlight, etc.)

On this page