v1ConvaiConversationGetSignedUrlGet method

Future<Response<ConversationSignedUrlResponseModel>> v1ConvaiConversationGetSignedUrlGet({
  1. required String? agentId,
  2. String? xiApiKey,
})

Get Signed Url @param agent_id The id of the agent 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<ConversationSignedUrlResponseModel>>
v1ConvaiConversationGetSignedUrlGet({
  required String? agentId,
  String? xiApiKey,
}) {
  generatedMapping.putIfAbsent(
    ConversationSignedUrlResponseModel,
    () => ConversationSignedUrlResponseModel.fromJsonFactory,
  );

  return _v1ConvaiConversationGetSignedUrlGet(
    agentId: agentId,
    xiApiKey: xiApiKey?.toString(),
  );
}