v1ConvaiConversationsConversationIdAudioGet method

Future<Response> v1ConvaiConversationsConversationIdAudioGet({
  1. required String? conversationId,
  2. String? xiApiKey,
})

Get Conversation Audio @param conversation_id The id of the conversation you're taking the action on. @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

Future<chopper.Response> v1ConvaiConversationsConversationIdAudioGet({
  required String? conversationId,
  String? xiApiKey,
}) {
  return _v1ConvaiConversationsConversationIdAudioGet(
    conversationId: conversationId,
    xiApiKey: xiApiKey?.toString(),
  );
}