Skip to main content

Automatically Fetch Transcripts from Demodesk Using Make

Want to automatically collect meeting transcripts from Demodesk and use them in your internal tools? You can set this up in just a few steps using Make.com

Raj Kumar Lohana avatar
Written by Raj Kumar Lohana
Updated over a month ago

Step 1: Use the Demodesk Trigger in Make

  1. Create a new scenario in Make.

  2. Add the Demodesk module:
    Watch Recording Transcription Postprocessed


Step 2: Retrieve the transcript

  1. After the trigger, add an HTTP module.

  2. Set it up like this:

    Method: GET
    URL:

    https://admin.demodesk.com/admin/demos/{{1.data.attributes.demoId}}.json

    (Replace {{1...}} with the correct output reference from the trigger.)

  3. In Headers, add:

    • api-key: your Demodesk API key

    • Accept: text/plain

This step fetches the full transcript text from the recording token received in the trigger.


Step 3: Store or send the transcript

You can now:

  • Send the transcript to email, Slack, Notion, or Google Drive

  • Convert it to a file using the “Create a Text File” module


💡 Tip

If you're only interested in the AI summary, you can fetch:

https://demodesk.com/api/v1/recordings/{{token}}/summary
Did this answer your question?