Concrete resource

If you would like to hard delete a concrete session resource - e.g. chat, recordings, transcripts, summaries, then you need to execute a DELETE request to the concrete resource endpoint.

  • DELETE /sessions/:id/chat -> this will permanently delete all chat messages for the session

  • DELETE /sessions/:id/questions -> this will permanently delete all Q&A for the session

  • DELETE /sessions/:id/polls -> this will permanently delete all polls for the session

  • DELETE /sessions/:id/recordings -> this will permanently delete all recordings for the session

  • DELETE /sessions/:id/transcripts -> this will permanently delete all transcripts for the session

  • DELETE /sessions/:id/summaries -> this will permanently delete all summaries for the session

You can hard delete ALL session resources by executing one DELETE request to DELETE /sessions/:id/resources

Last updated