Sorry in advance if this is a very basic question. We're implementing an AudioHook server to transcribe calls. Seeing as events aren't yet available, we need a way to get transcripts from our server back to the user. Our system is already set up to post transcripts to callback URLs, so that seems like the simplest approach.
My question is, what information should we send to users to allow them to match up our transcripts with their specific calls? Some plausible candidates I can think of:
- Conversation ID
- Session ID
- Correlation ID
- Participant ID
Which of these (if any) are sufficient to identify the call, and how would someone go about identifying the call from that info?