How to export full transcript from Squads to n8n?
# support
u
Hi there, im having hard time to find the way i can export transcripts from squads, i read that there is a way to do it with assistants but i want a full conversation from squads.
v
Hi! To help you export the full transcript from Squads to n8n, could you clarify at which step you're facing issues—are you having trouble retrieving the transcript from the Squads API, or is the challenge in sending that data to n8n? Source: - [Vapi Call Recording & Transcripts Documentation](https://docs.vapi.ai/assistants/call-recording)
u
Im using Dashboard UI and i cant find anywhere in Squads to get the full transcript.
i have 3 assistants in squad so far, and i need their conversation with a client
@Vapi Support Bot
v
Thanks for clarifying! When you select a specific call in the Vapi Dashboard, do you see an "Artifacts" section with a transcript option for that call? This is typically where full squad conversation transcripts are shown according to the documentation. If not, please let me know what you see so I can assist further. Source: - [Vapi Call Recording & Transcripts Documentation](https://docs.vapi.ai/assistants/call-recording)
c
Hi there! Great question about exporting transcripts from Squads to n8n. Here's how you can accomplish this: Getting Full Transcripts from Squads For Squads specifically, you'll want to enable the full message history to capture the complete conversation across all assistants. Configure this in your Squad's `artifactPlan`:
Copy code
{
  "artifactPlan": {
    "transcriptPlan": {
      "enabled": true
    },
    "fullMessageHistoryEnabled": true
  }
}
Once you have that enabled, make sure all of the assistants in the squad have
end-of-call
report enabled as a server message then add your n8n webhook URL as the server URL.